From 4a26f227316ef5ca88950479eed7086a2fd5b848 Mon Sep 17 00:00:00 2001 From: Quentin Kaiser Date: Fri, 20 Oct 2023 17:24:34 +0200 Subject: [PATCH] ci(cross-compile): move from -Werror to -Wall because the NDK compiler is dumb. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c14250a4..fdcdaa8c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,7 +154,7 @@ jobs: export RANLIB=$TOOLCHAIN/bin/llvm-ranlib export STRIP=$TOOLCHAIN/bin/llvm-strip ./configure --host=${{matrix.target}} CFLAGS="$DEF_CFLAGS" - - run: make -j8 V=1 CFLAGS_WARN="-Werror" + - run: make -j8 V=1 CFLAGS_WARN="-Wall" - uses: actions/upload-artifact@v3 with: name: android-${{matrix.arch}}-config.h