Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Swatinem/rust-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed Sep 4, 2022
2 parents be4be37 + 90429b3 commit 8653194
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/coverage.yml
Expand Up @@ -18,7 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- run: rustup toolchain install stable --profile minimal --component llvm-tools-preview
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal --component llvm-tools-preview
- uses: taiki-e/install-action@cargo-llvm-cov

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/install.yml
Expand Up @@ -18,7 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- run: rustup toolchain install stable --profile minimal
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
- uses: ./

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/simple.yml
Expand Up @@ -18,7 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- run: rustup toolchain install stable --profile minimal
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
- uses: ./
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sparse-registry.yml
Expand Up @@ -19,7 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v3

# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install nightly --profile minimal
rustup default nightly
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/target-dir.yml
Expand Up @@ -18,7 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- run: rustup toolchain install stable --profile minimal
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
# the `workspaces` option has the format `$workspace -> $target-dir`
# and the `$target-dir` is relative to the `$workspace`.
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/workspaces.yml
Expand Up @@ -18,7 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- run: rustup toolchain install stable --profile minimal --target wasm32-unknown-unknown
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal --target wasm32-unknown-unknown
- uses: ./
with:
Expand Down

0 comments on commit 8653194

Please sign in to comment.