diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-10-15 20:50:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 20:50:50 +0000 |
commit | a04fe5946872b0cb6d61e22f4822797011ba9b53 (patch) | |
tree | b9248023481e747289aedc651719f56fa75ea763 | |
parent | 5d76d33690431c36e2bd664623015294d1a6b6d1 (diff) | |
parent | 92290affeb38271565cbaa01b847cd4929dc2970 (diff) | |
download | nix-a04fe5946872b0cb6d61e22f4822797011ba9b53.zip |
Merge #1137
1137: Rustup minimal r=posborne a=asomers
Fix CI on FreeBSD after rustup 1.20.0.
Co-authored-by: Alan Somers <asomers@gmail.com>
-rw-r--r-- | .cirrus.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index ffb3d345..0ee38e21 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -12,9 +12,8 @@ task: fingerprint_script: cat Cargo.lock || echo "" # Install Rust setup_script: - - pkg install -y curl - - curl https://sh.rustup.rs -sSf --output rustup.sh - - sh rustup.sh -y --default-toolchain 1.36.0 + - fetch https://sh.rustup.rs -o rustup.sh + - sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0 - $HOME/.cargo/bin/rustup target add i686-unknown-freebsd amd64_test_script: - . $HOME/.cargo/env |