Skip to content

Commit

Permalink
Merge #606
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
bors[bot] and taiki-e authored Nov 28, 2020
2 parents 99c3230 + 02e337e commit aebab0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
- name: Test
run: ./ci/${{ matrix.crates }}.sh

Expand Down

0 comments on commit aebab0f

Please sign in to comment.