summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-11-04 05:08:07 +0900
committerCarl Lerche <me@carllerche.com>2019-11-03 12:08:07 -0800
commit3948e162927584def39eefaa92284ae73d3b1673 (patch)
tree8d1f387fe7163a35d9524eda702eb3a2ee72296f
parent6b35a1e8b0d53524af8d07f99cf85ae81a73ef18 (diff)
ci: install minimal profile by default (#1729)
-rw-r--r--.cirrus.yml2
-rw-r--r--ci/azure-install-rust.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 0c9ee180..0a2b18c8 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -13,7 +13,7 @@ task:
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- - sh rustup.sh -y --default-toolchain beta
+ - sh rustup.sh -y --profile minimal --default-toolchain beta
- . $HOME/.cargo/env
- rustup target add i686-unknown-freebsd
- |
diff --git a/ci/azure-install-rust.yml b/ci/azure-install-rust.yml
index 02176592..2b4feb2a 100644
--- a/ci/azure-install-rust.yml
+++ b/ci/azure-install-rust.yml
@@ -2,7 +2,7 @@ steps:
# Linux and macOS.
- script: |
set -e
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none
+ curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain none
export PATH=$PATH:$HOME/.cargo/bin
rustup toolchain install $RUSTUP_TOOLCHAIN
rustup default $RUSTUP_TOOLCHAIN
@@ -15,7 +15,7 @@ steps:
# Windows.
- script: |
curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe -y --default-toolchain none
+ rustup-init.exe -y --profile minimal --default-toolchain none
set PATH=%PATH%;%USERPROFILE%\.cargo\bin
rustup toolchain install %RUSTUP_TOOLCHAIN%
rustup default %RUSTUP_TOOLCHAIN%