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

set -euo pipefail

toolchain="${1:-nightly}"

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

rustup -V
rustc -V
cargo -V