Skip to content

Commit c205c62

Browse files
committed
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
1 parent 96481b7 commit c205c62

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Install Rust toolchain
4141
run: |
42-
rustup update stable
42+
rustup update --no-self-update stable
4343
rustup component add rustfmt rust-src
4444
4545
- name: Cache Dependencies
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Install Rust toolchain
7171
run: |
72-
rustup update stable
72+
rustup update --no-self-update stable
7373
rustup target add ${{ env.targets }} ${{ env.targets_ide }}
7474
7575
- name: Cache Dependencies

.github/workflows/metrics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Install Rust toolchain
2323
run: |
24-
rustup update stable
24+
rustup update --no-self-update stable
2525
rustup component add rustfmt rust-src
2626
2727
- name: Collect metrics

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Install Rust toolchain
23-
run: rustup update stable
23+
run: rustup update --no-self-update stable
2424

2525
- name: Install cargo-workspaces
2626
run: cargo install cargo-workspaces

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Install Rust toolchain
5959
run: |
60-
rustup update stable
60+
rustup update --no-self-update stable
6161
rustup target add ${{ matrix.target }}
6262
rustup component add rust-src
6363

.github/workflows/rustdoc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v3
2121

2222
- name: Install Rust toolchain
23-
run: rustup update stable
23+
run: rustup update --no-self-update stable
2424

2525
- name: Build Documentation
2626
run: cargo doc --all --no-deps

0 commit comments

Comments
 (0)