Skip to content

Commit

Permalink
Merge #700
Browse files Browse the repository at this point in the history
700: Fix windows CI r=taiki-e a=taiki-e



Co-authored-by: Taiki Endo <[email protected]>
  • Loading branch information
bors[bot] and taiki-e authored May 23, 2021
2 parents 8de64d9 + 806ac6b commit fcec876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install 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 }}
# `rustup self update` is necessary because the windows environment cannot self-update rustup.exe by `rustup update`.
run: rustup self update && rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Test
run: ./ci/test.sh

Expand Down

0 comments on commit fcec876

Please sign in to comment.