Skip to content

Commit

Permalink
Temporarily pin CI to Rust nightly-2024-09-22 (#6048)
Browse files Browse the repository at this point in the history
We use Rust nightly on CI in order to check that fuzz targets can still compile. With current latest nightly we’re running into a compiler panic: rust-lang/rust#130769

To unblock merging PRs, this pins the nightly version used on CI to a slightly older one that does not have this panic. This should be reverted after the panic is fixed in a new Rust nightly.
  • Loading branch information
SimonSapin authored Sep 24, 2024
1 parent 33097a8 commit 207324c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,9 @@ commands:
equal: [ *arm_linux_test_executor, << parameters.platform >> ]
steps:
- run:
name: Install nightly Rust to build the fuzzers
name: Install nightly-2024-09-22 Rust to build the fuzzers
command: |
rustup install nightly
rustup install nightly-2024-09-22
install_extra_tools:
steps:
Expand Down Expand Up @@ -523,7 +523,7 @@ commands:
path: ./target/nextest/ci/junit.xml
fuzz_build:
steps:
- run: cargo +nightly fuzz build
- run: cargo +nightly-2024-09-22 fuzz build

jobs:
lint:
Expand Down

0 comments on commit 207324c

Please sign in to comment.