File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ jobs:
190
190
with :
191
191
fetch-depth : 1
192
192
- name : Install rust
193
- uses : dtolnay/rust-toolchain@nightly
193
+ uses : dtolnay/rust-toolchain@stable
194
194
with :
195
195
components : rustfmt, clippy
196
196
- name : fmt
@@ -202,14 +202,14 @@ jobs:
202
202
cd fuzz
203
203
cargo clippy
204
204
- name : cargo-fuzz
205
- run : cargo +nightly install cargo-fuzz
205
+ run : cargo install cargo-fuzz
206
206
# TODO: it would be nice to save and restore the corpus between runs
207
207
- name : build corpus
208
208
run : |
209
209
cd tools
210
210
cargo run --bin generate-fuzz-corpus
211
211
- 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"
213
213
214
214
unit_tests :
215
215
name : Unit tests
You can’t perform that action at this time.
0 commit comments