Skip to content

Commit

Permalink
no self install
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji committed May 12, 2024
1 parent 60d6a6f commit 9121d45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: |
rustup toolchain install stable-${{ matrix.target }}
rustup toolchain install --no-self-update stable-${{ matrix.target }}
rustup default stable-${{ matrix.target }}
- name: Check out MinGW toolchain
run: |
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: |
rustup toolchain install ${{ env.MSRV }}
rustup toolchain install --no-self-update ${{ env.MSRV }}
rustup default ${{ env.MSRV }}
- run: |
rustup run stable cargo generate-lockfile
Expand All @@ -98,7 +98,7 @@ jobs:
git config --global core.eol lf
- uses: actions/checkout@v4
- run: |
rustup toolchain install nightly
rustup toolchain install --no-self-update nightly
rustup default nightly
- run: cargo doc --all --no-deps # --document-private-items
- run: echo '<meta http-equiv=refresh content=0;url=junction/index.html>' > target/doc/index.html
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: |
rustup toolchain install nightly -c clippy
rustup toolchain install --no-self-update nightly -c clippy
rustup default nightly
- run: cargo clippy --all-targets --all-features -- -Dwarnings -A clippy::assertions-on-constants

Expand All @@ -156,7 +156,7 @@ jobs:
shell: bash
run: |
# Toolchain setup
rustup toolchain install ${{ env.MSRV }} -c rustc-dev -c miri
rustup toolchain install --no-self-update ${{ env.MSRV }} -c rustc-dev -c miri
rustup default ${{ env.MSRV }}
rustup target add ${{ env.WIN_TARGET }}
Expand Down

0 comments on commit 9121d45

Please sign in to comment.