ci: Do not try to install for fuzz builds

This commit is contained in:
Hennadii Stepanov 2025-03-07 11:09:57 +00:00
parent a9a2b669f3
commit a3c3f37e71
No known key found for this signature in database
GPG key ID: 410108112E7EA81F
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ export CONTAINER_NAME="ci_native_fuzz_msan"
export PACKAGES="ninja-build" export PACKAGES="ninja-build"
# BDB generates false-positives and will be removed in future # BDB generates false-positives and will be removed in future
export DEP_OPTS="DEBUG=1 NO_BDB=1 NO_QT=1 CC=clang CXX=clang++ CFLAGS='${MSAN_FLAGS}' CXXFLAGS='${MSAN_AND_LIBCXX_FLAGS}'" export DEP_OPTS="DEBUG=1 NO_BDB=1 NO_QT=1 CC=clang CXX=clang++ CFLAGS='${MSAN_FLAGS}' CXXFLAGS='${MSAN_AND_LIBCXX_FLAGS}'"
export GOAL="install" export GOAL="all"
# Setting CMAKE_{C,CXX}_FLAGS_DEBUG flags to an empty string ensures that the flags set in MSAN_FLAGS remain unaltered. # Setting CMAKE_{C,CXX}_FLAGS_DEBUG flags to an empty string ensures that the flags set in MSAN_FLAGS remain unaltered.
# _FORTIFY_SOURCE is not compatible with MSAN. # _FORTIFY_SOURCE is not compatible with MSAN.
export BITCOIN_CONFIG="\ export BITCOIN_CONFIG="\

View file

@ -14,7 +14,7 @@ export RUN_UNIT_TESTS=false
export RUN_FUNCTIONAL_TESTS=false export RUN_FUNCTIONAL_TESTS=false
export RUN_FUZZ_TESTS=true export RUN_FUZZ_TESTS=true
export FUZZ_TESTS_CONFIG="--valgrind" export FUZZ_TESTS_CONFIG="--valgrind"
export GOAL="install" export GOAL="all"
export BITCOIN_CONFIG="\ export BITCOIN_CONFIG="\
-DBUILD_FOR_FUZZING=ON \ -DBUILD_FOR_FUZZING=ON \
-DSANITIZERS=fuzzer \ -DSANITIZERS=fuzzer \