From c742e712c4bb4333fcfe6770769483a7d394761d Mon Sep 17 00:00:00 2001 From: Fuzzbawls Date: Sat, 10 Sep 2022 23:42:10 -0700 Subject: [PATCH] [GA] Disable Unit tests for win64 build in GA More recent GA environments have broken the ability to run the win64 build's unit tests via Wine. Disable for now. --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6383c49eb5ea3..5c5a4f725c2a7 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -273,11 +273,11 @@ jobs: goal: install BITCOIN_CONFIG: "--with-gui=qt5 --enable-glibc-back-compat --enable-reduce-exports --disable-online-rust" - - name: Win64 [GOAL:deploy] [no functional tests] + - name: Win64 [GOAL:deploy] [no unit or functional tests] os: ubuntu-18.04 host: x86_64-w64-mingw32 apt_get: python3 nsis g++-mingw-w64-x86-64 wine-binfmt wine64 - unit_tests: true + unit_tests: false functional_tests: false goal: deploy BITCOIN_CONFIG: "--with-gui=auto --enable-reduce-exports --disable-online-rust"