Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix build failure for aptos-core #11027

Merged
merged 4 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/aptos-core/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
#
################################################################################

NIGHTLY_VERSION="nightly-2023-06-01"
NIGHTLY_VERSION="nightly"

rustup install $NIGHTLY_VERSION
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
2 changes: 1 addition & 1 deletion projects/aptos-core/project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ sanitizers:
- address
fuzzing_engines:
- libfuzzer
coverage_extra_args: -ignore-filename-regex=.*/rustc/.*
coverage_extra_args: -ignore-filename-regex=.*/rustc/.*
Loading