diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-03-25 11:31:23 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-03-25 11:31:33 +0100 |
commit | c9b5790e8da8a88d9022dd9725a1f7bb4474cbf7 (patch) | |
tree | 68e07d8efaa0ed8de06df9e07eaea5d6dc69c975 | |
parent | 4aaa74e947f85cb7d1ed6c9aa4b39e878950980c (diff) | |
parent | fa6e47d85be42b3065ad530257e5d4c23afcade3 (diff) |
Merge bitcoin/bitcoin#24667: ci: Compile fuzz binary in periodic task
fa6e47d85be42b3065ad530257e5d4c23afcade3 ci: Compile fuzz binary in periodic task (MarcoFalke)
Pull request description:
There is one task that is re-run periodically by CI about once a week for all pull request to detect silent merge conflict before merge.
It would be nice if this task also checked for silent merge conflict in the fuzz binary.
ACKs for top commit:
fanquake:
ACK fa6e47d85be42b3065ad530257e5d4c23afcade3 green CI
vincenzopalazzo:
ACK https://github.com/bitcoin/bitcoin/pull/24667/commits/fa6e47d85be42b3065ad530257e5d4c23afcade3
Tree-SHA512: fd5b02dc72af7a4ba973919d62c3aad11569f86a93622e2e56330ea9d379f1f015dfd5cb7efbf00718b306103028bc10c7e935579c2337fb506bd7fe3e145e1c
-rwxr-xr-x | ci/test/00_setup_env_native_qt5.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_native_qt5.sh b/ci/test/00_setup_env_native_qt5.sh index 53f933f514..70a27ed66c 100755 --- a/ci/test/00_setup_env_native_qt5.sh +++ b/ci/test/00_setup_env_native_qt5.sh @@ -16,4 +16,4 @@ export RUN_UNIT_TESTS="false" export GOAL="install" export PREVIOUS_RELEASES_TO_DOWNLOAD="v0.15.2 v0.16.3 v0.17.2 v0.18.1 v0.19.1 v0.20.1 v0.21.0 v22.0" export BITCOIN_CONFIG="--enable-zmq --with-libs=no --with-gui=qt5 --enable-reduce-exports \ ---enable-debug --disable-fuzz-binary CFLAGS=\"-g0 -O2 -funsigned-char\" CXXFLAGS=\"-g0 -O2 -funsigned-char\" CC=gcc-8 CXX=g++-8" +--enable-debug CFLAGS=\"-g0 -O2 -funsigned-char\" CXXFLAGS=\"-g0 -O2 -funsigned-char\" CC=gcc-8 CXX=g++-8" |