Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/rust-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export rust_nightly_docker_image=solanalabs/rust-nightly:"$nightly_version"
declare toolchain=$1
if ! cargo +"$toolchain" -V; then
rustup install "$toolchain"
rustup default "$toolchain"
Comment thread
jackcmay marked this conversation as resolved.
cargo +"$toolchain" -V
fi
}
Expand Down
12 changes: 8 additions & 4 deletions sdk/bpf/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ download() {

# Install or upgrade xargo
(
cargo install cargo-update
cargo install-update-config --version =0.3.19 xargo
set -e
cargo install-update -i xargo
# cargo install cargo-update
# cargo install-update-config -a xargo
set -x
# cargo install-update -i xargo
env
cargo --version
rustup toolchain list
cargo install -f xargo
xargo --version > xargo.md 2>&1
)
# shellcheck disable=SC2181
Expand Down