diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2021-09-11 11:10:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-11 11:10:46 +0200 |
commit | 951bcb0c396b56f09b5c23e7cde04b20bf769231 (patch) | |
tree | 11ffb88470f4d3646e574963382b0d9fee0e1dfd /.github/workflows/build.yml | |
parent | 083e46492982e67424ab172fe5fc4b2eada52729 (diff) |
Cassandra: fix compilation when "--enable-debug-messages" option is used (#1294)
Let's try adding a dedicated compilation in GitHub Actions to easily
detect this kind of errors in the future
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8d69344b..8e3abfc6b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,10 @@ jobs: run: ./tests/do.sh - name: Test UNIT run: ./tests/unit/unit + - name: Configure (with debug logs) + run: make distclean && env CFLAGS='-Werror' ./autogen.sh --enable-debug-messages + - name: Build + run: make all - name: Configure ARM run: make distclean && env CFLAGS='-Werror' ./autogen.sh --host=arm-linux-gnueabihf --with-only-libndpi - name: Build ARM |