summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-build-check.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ubuntu-build-check.sh')
-rwxr-xr-x.github/workflows/ubuntu-build-check.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu-build-check.sh b/.github/workflows/ubuntu-build-check.sh
index fb7c71ecb8..75fc36fffb 100755
--- a/.github/workflows/ubuntu-build-check.sh
+++ b/.github/workflows/ubuntu-build-check.sh
@@ -102,7 +102,7 @@ for args in "${ARGS[@]}"; do
SECONDS=0
info "Checking build with $args"
- if ! AR="$AR" CC="$CC" CXX="$CXX" meson -Dtests=unsafe -Dslow-tests=true --werror $args build; then
+ if ! AR="$AR" CC="$CC" CXX="$CXX" CFLAGS="-Werror" CXXFLAGS="-Werror" meson -Dtests=unsafe -Dslow-tests=true --werror $args build; then
fatal "meson failed with $args"
fi