Skip to content

Commit

Permalink
disable rustup self update to work around 'rustup.exe" is not a valid…
Browse files Browse the repository at this point in the history
… subcommand' error for windows CI
  • Loading branch information
g-k committed Mar 15, 2024
1 parent 69574b8 commit 92c1760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup update --no-self-update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose

0 comments on commit 92c1760

Please sign in to comment.