From 8d738f9101a6e3508064061329f6686ec5be6373 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 14 Mar 2024 22:10:56 +0000 Subject: [PATCH 1/3] CI: Disable MSVC task (MSVC is not supported) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1e171c0e3..51e20c5e6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,7 +121,7 @@ jobs: runs-on: windows-2022 # No need to run on the read-only mirror, unless it is a PR. - if: github.repository != 'bitcoin-core/gui' || github.event_name == 'pull_request' + if: false env: CCACHE_MAXSIZE: '200M' From 90bbe65ebc046d4928b429de66300b3e85613cb5 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 14 Mar 2024 23:35:23 +0000 Subject: [PATCH 2/3] CI: Disable libbitcoinkernel build (not supported for now) --- .cirrus.yml | 2 +- ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 3f52adde8a..40f3d0abb8 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -188,7 +188,7 @@ task: FILE_ENV: "./ci/test/00_setup_env_i686_multiprocess.sh" task: - name: 'no wallet, libbitcoinkernel' + name: 'no wallet' << : *GLOBAL_TASK_TEMPLATE persistent_worker: labels: diff --git a/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh b/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh index 454a4b8dff..31ebc74edb 100755 --- a/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh +++ b/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh @@ -12,4 +12,4 @@ export CI_IMAGE_NAME_TAG="docker.io/ubuntu:20.04" export PACKAGES="python3-zmq clang-10 llvm-10 libc++abi-10-dev libc++-10-dev" export DEP_OPTS="NO_WALLET=1 CC=clang-10 CXX='clang++-10 -stdlib=libc++'" export GOAL="install" -export BITCOIN_CONFIG="--enable-reduce-exports --enable-experimental-util-chainstate --with-experimental-kernel-lib --enable-shared" +export BITCOIN_CONFIG="--enable-reduce-exports --enable-shared" From 581215006ef50aeeb09fa61bda1541b995c1e537 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 17 Mar 2024 05:26:25 +0000 Subject: [PATCH 3/3] CI: Extend macOS native timeout to 6 hours Actual run took 3h31m, largely due to wallet_notifications fuzzer which ran for 2h28m --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51e20c5e6b..73654d09cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: # No need to run on the read-only mirror, unless it is a PR. if: github.repository != 'bitcoin-core/gui' || github.event_name == 'pull_request' - timeout-minutes: 120 + timeout-minutes: 360 env: FILE_ENV: './ci/test/00_setup_env_mac_native.sh'