Skip to content

Commit aebab0f

Browse files
bors[bot]taiki-e
andauthored
Merge #606
606: Fix CI failure on Windows r=taiki-e a=taiki-e --no-self-update is necessary because the windows environment cannot self-update rustup.exe. Co-authored-by: Taiki Endo <[email protected]>
2 parents 99c3230 + 02e337e commit aebab0f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@master
4646
- name: Install Rust
47-
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
47+
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
48+
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
4849
- name: Test
4950
run: ./ci/${{ matrix.crates }}.sh
5051

0 commit comments

Comments
 (0)