diff options
author | Colomban Wendling <[email protected]> | 2023-11-09 15:27:36 +0100 |
---|---|---|
committer | Colomban Wendling <[email protected]> | 2025-03-12 09:45:10 +0100 |
commit | c82a6153fb927452e77ff520208e2918a2af53cb (patch) | |
tree | bdc88754c04029774fb6e879a35fb7bd55c0b501 | |
parent | f47dd32e1c4f55a0d6ea0049c1b2e3e889fc7548 (diff) | |
download | mate-panel-c82a6153fb927452e77ff520208e2918a2af53cb.tar.bz2 mate-panel-c82a6153fb927452e77ff520208e2918a2af53cb.tar.xz |
github actions: Enable --enable-compile-warnings=maximum
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c4fddfc5..7fd900ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,6 +15,7 @@ concurrency: cancel-in-progress: true env: + CONFIGURE_FLAGS: --enable-compile-warnings=maximum CFLAGS: -g -O2 -Werror=pointer-arith -Werror=implicit-function-declaration JOBS: 2 DEBUG: 1 @@ -116,7 +117,7 @@ jobs: run: | cd mate-panel NOCONFIGURE=1 ./autogen.sh - { ./configure || { cat config.log; exit 1; } ; } + { ./configure ${CONFIGURE_FLAGS} || { cat config.log; exit 1; } ; } - name: Build run: make -C mate-panel -j ${{ env.JOBS }} @@ -210,7 +211,7 @@ jobs: run: | cd mate-panel NOCONFIGURE=1 ./autogen.sh - { ./configure --with-in-process-applets=${{matrix.in-process}} || { cat config.log; exit 1; } ; } + { ./configure ${CONFIGURE_FLAGS} --with-in-process-applets=${{matrix.in-process}} || { cat config.log; exit 1; } ; } - name: Build run: make -C mate-panel -j ${{ env.JOBS }} |