Skip to content

Commit

Permalink
CI: Fix nightly toolchain
Browse files Browse the repository at this point in the history
Because the nightly stdsimd feature was removed, a bunch
of stuff broke. Fix the nightly version for now, so that it works again.
  • Loading branch information
robinhundt committed Feb 6, 2024
1 parent c641a53 commit 4df6eba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
with:
submodules: recursive
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@master
id: toolchain
with:
components: "clippy, rustfmt"
toolchain: nightly-2024-01-12
- name: Override default toolchain
run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Cache
Expand All @@ -51,9 +51,10 @@ jobs:
with:
submodules: recursive
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@master
id: toolchain
with:
toolchain: nightly-2024-01-12
components: "clippy, rustfmt"
- name: Override default toolchain
run: rustup override set ${{steps.toolchain.outputs.name}}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
with:
submodules: recursive
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@master
id: toolchain
with:
toolchain: nightly-2024-01-12
- name: Override default toolchain
run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Cache
Expand Down

0 comments on commit 4df6eba

Please sign in to comment.