diff options
| author | Patrick Lodder <[email protected]> | 2021-07-17 21:38:21 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-07-17 21:38:21 +0200 |
| commit | 7d81c1bb17c8bb173b5b5de4047d7c3c93a42da8 (patch) | |
| tree | 7ba4072e8dfa856dd3186b586680ca88ee9f6f4a /.github/workflows | |
| parent | Merge pull request #2312 from rnicoll/1.14.4-subsidy-tests (diff) | |
| download | discoin-7d81c1bb17c8bb173b5b5de4047d7c3c93a42da8.tar.xz discoin-7d81c1bb17c8bb173b5b5de4047d7c3c93a42da8.zip | |
ci: make dogecoin-qt builds explicit
CI will not complain if there were an error with qt for builds that
do not explicitly specify that we want to build UI. This makes all
builds expect QT except the i686-linux and armhf builds.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f19ce637..bb7614f8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: packages: python3 run-tests: true dep-opts: "NO_WALLET=1" - config-opts: "--enable-glibc-back-compat --enable-reduce-exports --disable-wallet" + config-opts: "--enable-gui=qt5 --enable-glibc-back-compat --enable-reduce-exports --disable-wallet" goal: install - name: x86_64-linux-dbg host: x86_64-unknown-linux-gnu @@ -66,7 +66,7 @@ jobs: packages: bc python3-zmq run-tests: true dep-opts: "DEBUG=1" - config-opts: "--enable-zmq --enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER" + config-opts: "--enable-gui=qt5 --enable-zmq --enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER" goal: install - name: i686-win host: i686-w64-mingw32 @@ -79,7 +79,7 @@ jobs: sudo update-binfmts --import /usr/share/binfmts/wine run-tests: true dep-opts: "" - config-opts: "--enable-reduce-exports" + config-opts: "--enable-reduce-exports --enable-gui=qt5" goal: install - name: x86_64-win host: x86_64-w64-mingw32 @@ -92,7 +92,7 @@ jobs: sudo update-binfmts --import /usr/share/binfmts/wine run-tests: true dep-opts: "" - config-opts: "--enable-reduce-exports" + config-opts: "--enable-reduce-exports --enable-gui=qt5" goal: install - name: x86_64-macos host: x86_64-apple-darwin11 @@ -100,7 +100,7 @@ jobs: packages: cmake imagemagick libcap-dev librsvg2-bin libz-dev libtiff-tools libtinfo5 python3-setuptools xorriso libtinfo5 run-tests: false dep-opts: "" - config-opts: "--enable-gui --enable-reduce-exports" + config-opts: "--enable-gui=qt5 --enable-reduce-exports" goal: deploy sdk: 10.11 |