mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 10:10:41 +00:00
ci: disable chocolatey progress output on Windows
Add the --no-progress option so that choco does not print ten thousand lines of "Progress: ... X%" messages in the CI logs. BUG=None TEST=kokoro CI Change-Id: I7ec414f4baeeb530f0dc103b256807c7f642ed53 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3657051 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Dennis Kempin <denniskempin@google.com>
This commit is contained in:
parent
5b0f6aaaae
commit
ae9b656a2d
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ set rustup_version=1.24.3
|
|||
|
||||
:: Install rust toolchain through rustup.
|
||||
echo [%TIME%] installing rustup %rustup_version%
|
||||
choco install -y rustup.install --version=%rustup_version%
|
||||
choco install --no-progress -y rustup.install --version=%rustup_version%
|
||||
|
||||
:: Reload path for installed rustup binary
|
||||
call RefreshEnv.cmd
|
||||
|
@ -26,7 +26,7 @@ cargo install bindgen
|
|||
|
||||
:: Install python. The default kokoro intalled version is 3.7 but linux tests
|
||||
:: seem to run on 3.9+.
|
||||
choco install -y python --version=3.9.0
|
||||
choco install --no-progress -y python --version=3.9.0
|
||||
|
||||
:: Reload path for installed rust toolchain.
|
||||
call RefreshEnv.cmd
|
||||
|
|
Loading…
Reference in a new issue