mirror of https://github.com/google/oss-fuzz.git
fix build failure for aptos-core (#11027)
This PR asets the rust `nightly` version to generic to solve a build issue.
This commit is contained in:
parent
082c00a191
commit
3e0e29f72c
|
@ -15,7 +15,7 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
NIGHTLY_VERSION="nightly-2023-06-01"
|
||||
NIGHTLY_VERSION="nightly"
|
||||
|
||||
rustup install $NIGHTLY_VERSION
|
||||
cd testsuite/fuzzer
|
||||
|
@ -23,4 +23,4 @@ cd testsuite/fuzzer
|
|||
RUSTFLAGS="$RUSTFLAGS --cfg tokio_unstable" cargo +$NIGHTLY_VERSION fuzz build -O -a
|
||||
for fuzzer in $(cat fuzz/Cargo.toml | grep "name = " | grep -v "fuzzer-fuzz" | cut -d'"' -f2); do
|
||||
cp ../../target/x86_64-unknown-linux-gnu/release/$fuzzer $OUT/
|
||||
done
|
||||
done
|
||||
|
|
|
@ -9,4 +9,4 @@ sanitizers:
|
|||
- address
|
||||
fuzzing_engines:
|
||||
- libfuzzer
|
||||
coverage_extra_args: -ignore-filename-regex=.*/rustc/.*
|
||||
coverage_extra_args: -ignore-filename-regex=.*/rustc/.*
|
||||
|
|
Loading…
Reference in New Issue