aboutsummaryrefslogtreecommitdiff
path: root/ci/install-rust.sh
blob: b6625b68189331f984c0a33554f3e91386933ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -euo pipefail

toolchain="${1:-nightly}"

rustup set profile minimal
rustup update "${toolchain}" --no-self-update
rustup default "${toolchain}"

rustup -V
rustc -V
cargo -V