diff options
author | Alan Somers <asomers@gmail.com> | 2019-10-15 08:49:39 -0600 |
---|---|---|
committer | Alan Somers <asomers@gmail.com> | 2019-10-15 08:49:39 -0600 |
commit | 2c9ff688c9261a1df777076102c8146cb7ac4e28 (patch) | |
tree | b2b168ac666b02b2b449b7fafbea2ba7cc12349c /.cirrus.yml | |
parent | a220ded341b826275b4243722af417f55cb23be0 (diff) | |
download | nix-2c9ff688c9261a1df777076102c8146cb7ac4e28.zip |
Use rustup's minimal profile during CI on FreeBSD
This should fix CI on FreeBSD after Rustup 1.20.0 was released, and save
time as well.
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index ffb3d345..039d922a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -14,7 +14,7 @@ task: setup_script: - pkg install -y curl - curl https://sh.rustup.rs -sSf --output rustup.sh - - sh rustup.sh -y --default-toolchain 1.36.0 + - 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 |