Unnamed repository; edit this file 'description' to name the repository.
try fixing spurious CI failures on windows
It seems like it may be related to self-update? Anyways, I think we
should be disabling self-update on CI
| -rw-r--r-- | .github/workflows/ci.yaml | 4 | ||||
| -rw-r--r-- | .github/workflows/metrics.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/publish.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/rustdoc.yaml | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3540706095..0c81ff0789 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: - name: Install Rust toolchain run: | - rustup update stable + rustup update --no-self-update stable rustup component add rustfmt rust-src - name: Cache Dependencies @@ -69,7 +69,7 @@ jobs: - name: Install Rust toolchain run: | - rustup update stable + rustup update --no-self-update stable rustup target add ${{ env.targets }} ${{ env.targets_ide }} - name: Cache Dependencies diff --git a/.github/workflows/metrics.yaml b/.github/workflows/metrics.yaml index 1407bd8f68..3fe2fc917a 100644 --- a/.github/workflows/metrics.yaml +++ b/.github/workflows/metrics.yaml @@ -21,7 +21,7 @@ jobs: - name: Install Rust toolchain run: | - rustup update stable + rustup update --no-self-update stable rustup component add rustfmt rust-src - name: Collect metrics diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7020726165..927996c1be 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - name: Install Rust toolchain - run: rustup update stable + run: rustup update --no-self-update stable - name: Install cargo-workspaces run: cargo install cargo-workspaces diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cb47d3973e..4e62f2cde2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -57,7 +57,7 @@ jobs: - name: Install Rust toolchain run: | - rustup update stable + rustup update --no-self-update stable rustup target add ${{ matrix.target }} rustup component add rust-src diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index 5ed4e8ca64..05f3e254e5 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v3 - name: Install Rust toolchain - run: rustup update stable + run: rustup update --no-self-update stable - name: Build Documentation run: cargo doc --all --no-deps |