mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 14:13:58 +00:00
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
This commit is contained in:
parent
96481b7786
commit
c205c629ef
5 changed files with 6 additions and 6 deletions
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/metrics.yaml
vendored
2
.github/workflows/metrics.yaml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
@ -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
|
||||
|
||||
|
|
2
.github/workflows/rustdoc.yaml
vendored
2
.github/workflows/rustdoc.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue