Skip to content

Commit 207324c

Browse files
authored
Temporarily pin CI to Rust nightly-2024-09-22 (#6048)
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.
1 parent 33097a8 commit 207324c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -355,9 +355,9 @@ commands:
355355
equal: [ *arm_linux_test_executor, << parameters.platform >> ]
356356
steps:
357357
- run:
358-
name: Install nightly Rust to build the fuzzers
358+
name: Install nightly-2024-09-22 Rust to build the fuzzers
359359
command: |
360-
rustup install nightly
360+
rustup install nightly-2024-09-22
361361
362362
install_extra_tools:
363363
steps:
@@ -523,7 +523,7 @@ commands:
523523
path: ./target/nextest/ci/junit.xml
524524
fuzz_build:
525525
steps:
526-
- run: cargo +nightly fuzz build
526+
- run: cargo +nightly-2024-09-22 fuzz build
527527

528528
jobs:
529529
lint:

0 commit comments

Comments
 (0)