From 60f821fe73c3d3b61b1f3737395d5eec040f169a Mon Sep 17 00:00:00 2001 From: Patrick Lodder Date: Mon, 11 Oct 2021 03:05:03 +0200 Subject: [PATCH] ci: make --enable-reduce-exports standard for all hosts --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25cefd992..2979e2704 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: packages: g++-multilib bc python3-zmq run-tests: true dep-opts: "NO_QT=1" - config-opts: "--enable-zmq --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++" + config-opts: "--enable-zmq --enable-glibc-back-compat LDFLAGS=-static-libstdc++" goal: install - name: armhf-linux host: arm-linux-gnueabihf @@ -50,7 +50,7 @@ jobs: packages: g++-arm-linux-gnueabihf run-tests: false dep-opts: "NO_QT=1" - config-opts: "--enable-glibc-back-compat --enable-reduce-exports --disable-tests" + config-opts: "--enable-glibc-back-compat --disable-tests LDFLAGS=-static-libstdc++" goal: install - name: x86_64-linux-nowallet host: x86_64-unknown-linux-gnu @@ -58,7 +58,7 @@ jobs: packages: python3 run-tests: true dep-opts: "NO_WALLET=1" - config-opts: "--enable-gui=qt5 --enable-glibc-back-compat --enable-reduce-exports --disable-wallet" + config-opts: "--enable-gui=qt5 --enable-glibc-back-compat --disable-wallet LDFLAGS=-static-libstdc++" 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-gui=qt5 --enable-zmq --enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER" + config-opts: "--enable-gui=qt5 --enable-zmq --enable-glibc-back-compat 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 --enable-gui=qt5" + config-opts: "--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 --enable-gui=qt5" + config-opts: "--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=qt5 --enable-reduce-exports" + config-opts: "--enable-gui=qt5" goal: deploy sdk: 10.11 @@ -166,7 +166,7 @@ jobs: run: | depends/${{ matrix.host }}/native/bin/ccache --max-size=$CCACHE_SIZE ./autogen.sh - ./configure --prefix=`pwd`/depends/${{ matrix.host }} ${{ matrix.config-opts }} || ( cat config.log && false) + ./configure --prefix=`pwd`/depends/${{ matrix.host }} ${{ matrix.config-opts }} --enable-reduce-exports || ( cat config.log && false) make $MAKEJOBS ${{ matrix.goal }} || ( echo "Build failure. Verbose build follows." && make ${{ matrix.goal }} V=1 ; false ) - name: Run tests