Merge branch 'bump-just' into 'master'

Update just and sccache

See merge request redox-os/redox!2129
This commit is contained in:
Jeremy Soller 2026-05-07 08:29:42 -06:00
commit c45841ef6f
2 changed files with 3 additions and 3 deletions

View File

@ -1171,7 +1171,7 @@ else
fi
fi
cargoInstall just 1.42.4
cargoInstall just 1.50.0
cargoInstall cbindgen 0.29.0
if [ "$dependenciesonly" = false ]; then

View File

@ -6,11 +6,11 @@ echo "Installing rust..."
curl "https://sh.rustup.rs" -sSf | sh -s -- -y --default-toolchain stable --profile minimal
echo "Downloading sccache..."
SCCACHE_URL="https://github.com/mozilla/sccache/releases/download/v0.10.0/sccache-v0.10.0-$(uname -m)-unknown-linux-musl.tar.gz"
SCCACHE_URL="https://github.com/mozilla/sccache/releases/download/v0.15.0/sccache-v0.15.0-$(uname -m)-unknown-linux-musl.tar.gz"
wget -qO- --show-progress "${SCCACHE_URL}" | tar -xz -C ~/.cargo/bin --strip-components=1 --wildcards '*/sccache'
echo "Downloading just..."
JUST_URL="https://github.com/casey/just/releases/download/1.45.0/just-1.45.0-$(uname -m)-unknown-linux-musl.tar.gz"
JUST_URL="https://github.com/casey/just/releases/download/1.50.0/just-1.50.0-$(uname -m)-unknown-linux-musl.tar.gz"
wget -qO- --show-progress "${JUST_URL}" | tar -xz -C ~/.cargo/bin --wildcards 'just'
echo "Downloading cbindgen..."