Update just and sccache

This commit is contained in:
Wildan M 2026-05-07 21:20:25 +07:00
parent baec8f7bb4
commit 15a610024d
No known key found for this signature in database
GPG Key ID: 01AC53185C679C79
2 changed files with 3 additions and 3 deletions

View File

@ -1171,7 +1171,7 @@ else
fi fi
fi fi
cargoInstall just 1.42.4 cargoInstall just 1.50.0
cargoInstall cbindgen 0.29.0 cargoInstall cbindgen 0.29.0
if [ "$dependenciesonly" = false ]; then 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 curl "https://sh.rustup.rs" -sSf | sh -s -- -y --default-toolchain stable --profile minimal
echo "Downloading sccache..." 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' wget -qO- --show-progress "${SCCACHE_URL}" | tar -xz -C ~/.cargo/bin --strip-components=1 --wildcards '*/sccache'
echo "Downloading just..." 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' wget -qO- --show-progress "${JUST_URL}" | tar -xz -C ~/.cargo/bin --wildcards 'just'
echo "Downloading cbindgen..." echo "Downloading cbindgen..."