Skip to content

Commit

Permalink
Fix CI failure on Windows (#415)
Browse files Browse the repository at this point in the history
--no-self-update is necessary because the windows environment cannot
self-update rustup.exe.
  • Loading branch information
taiki-e authored Jul 13, 2020
1 parent 7daa7fe commit 2d51809
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 @@ -66,7 +66,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust
run: rustup update stable && rustup default stable
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
run: rustup update stable --no-self-update && rustup default stable
- name: Test
run: . ci/test-stable.sh test

Expand Down

0 comments on commit 2d51809

Please sign in to comment.