From e2794ccf84c00286c531ed777e6a85e90ac3a516 Mon Sep 17 00:00:00 2001 From: Philipp Wagner Date: Wed, 29 Sep 2021 12:04:20 +0100 Subject: [PATCH] [ci] Avoid installing/building/testing Rust in CI rustup, our way to installing Rust, is currently broken, breaking all CI jobs. Avoid installing Rust until the issue is fixed. Software builds should continue, but skip the Rust parts. https://github.com/rust-lang/rustup/issues/2855 Signed-off-by: Philipp Wagner --- ci/install-package-dependencies.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ci/install-package-dependencies.sh b/ci/install-package-dependencies.sh index b16378df9cd8e4..9aea587dae2ac4 100755 --- a/ci/install-package-dependencies.sh +++ b/ci/install-package-dependencies.sh @@ -136,10 +136,5 @@ sudo chmod 777 /tools/verible tar -C /tools/verible -xf "$verible_tar" --strip-components=1 export PATH=/tools/verible/bin:$PATH -# Install Rust -sw/vendor/rustup/rustup-init.sh -y \ - --default-toolchain "${RUST_VERSION}" -export PATH=$HOME/.cargo/bin:$PATH - # Propagate PATH changes to all subsequent steps of the job echo "##vso[task.setvariable variable=PATH]$PATH"