Skip to content

Commit d045028

Browse files
committed
the latest nightly rust build (1.78.0) has a regression causing fuzz targets to fail to link on Linux. Revert to the previous release
1 parent e29baaf commit d045028

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
with:
191191
fetch-depth: 1
192192
- name: Install rust
193-
uses: dtolnay/rust-toolchain@nightly
193+
uses: dtolnay/rust-toolchain@stable
194194
with:
195195
components: rustfmt, clippy
196196
- name: fmt
@@ -202,14 +202,14 @@ jobs:
202202
cd fuzz
203203
cargo clippy
204204
- name: cargo-fuzz
205-
run: cargo +nightly install cargo-fuzz
205+
run: cargo install cargo-fuzz
206206
# TODO: it would be nice to save and restore the corpus between runs
207207
- name: build corpus
208208
run: |
209209
cd tools
210210
cargo run --bin generate-fuzz-corpus
211211
- name: build
212-
run: cargo fuzz list | xargs -I "%" sh -c "cargo +nightly fuzz run % -- -max_total_time=30 || exit 255"
212+
run: cargo fuzz list | xargs -I "%" sh -c "cargo fuzz run % -- -max_total_time=30 || exit 255"
213213

214214
unit_tests:
215215
name: Unit tests

0 commit comments

Comments
 (0)