Skip to content

Commit ee68b05

Browse files
committed
Merge bitcoin/bitcoin#32014: ci: Do not try to install for fuzz builds
a3c3f37 ci: Do not try to install for fuzz builds (Hennadii Stepanov) Pull request description: This PR is a follow-up to bitcoin/bitcoin#31844 and extends the changes from fb0546b to all fuzz builds in the CI. Fixes bitcoin/bitcoin#32001. ACKs for top commit: dergoegge: utACK a3c3f37 Tree-SHA512: bc422c53f6f06f25a0e13e788ade7c98711d864773a909487b8863e7cacfbc499ea466ec675a955279a89e247745ff0e845cd42896b4d405c4441d5e9f3a9c1b
2 parents 093c757 + a3c3f37 commit ee68b05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/test/00_setup_env_native_fuzz_with_msan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export CONTAINER_NAME="ci_native_fuzz_msan"
1616
export PACKAGES="ninja-build"
1717
# BDB generates false-positives and will be removed in future
1818
export DEP_OPTS="DEBUG=1 NO_BDB=1 NO_QT=1 CC=clang CXX=clang++ CFLAGS='${MSAN_FLAGS}' CXXFLAGS='${MSAN_AND_LIBCXX_FLAGS}'"
19-
export GOAL="install"
19+
export GOAL="all"
2020
# Setting CMAKE_{C,CXX}_FLAGS_DEBUG flags to an empty string ensures that the flags set in MSAN_FLAGS remain unaltered.
2121
# _FORTIFY_SOURCE is not compatible with MSAN.
2222
export BITCOIN_CONFIG="\

ci/test/00_setup_env_native_fuzz_with_valgrind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export RUN_UNIT_TESTS=false
1414
export RUN_FUNCTIONAL_TESTS=false
1515
export RUN_FUZZ_TESTS=true
1616
export FUZZ_TESTS_CONFIG="--valgrind"
17-
export GOAL="install"
17+
export GOAL="all"
1818
export BITCOIN_CONFIG="\
1919
-DBUILD_FOR_FUZZING=ON \
2020
-DSANITIZERS=fuzzer \

0 commit comments

Comments
 (0)