From 2b42d3a55a4a59814be0b87b6d971bb35670cd0b Mon Sep 17 00:00:00 2001 From: Tomasz Sobczyk Date: Mon, 9 Aug 2021 13:15:39 +0200 Subject: [PATCH] remove werror --- .github/workflows/stockfish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stockfish.yml b/.github/workflows/stockfish.yml index 54b0cb12..e50930f8 100644 --- a/.github/workflows/stockfish.yml +++ b/.github/workflows/stockfish.yml @@ -16,7 +16,6 @@ jobs: env: COMPILER: ${{ matrix.config.compiler }} COMP: ${{ matrix.config.comp }} - CXXFLAGS: "-Werror" strategy: matrix: config: @@ -129,7 +128,7 @@ jobs: - name: Test debug x86-32 build if: ${{ matrix.config.run_32bit_tests }} run: | - export CXXFLAGS="-Werror -D_GLIBCXX_DEBUG" + export CXXFLAGS="-D_GLIBCXX_DEBUG" make clean make -j2 ARCH=x86-32 optimize=no debug=yes build ../tests/signature.sh $benchref @@ -167,7 +166,7 @@ jobs: - name: Test debug x86-64-modern build if: ${{ matrix.config.run_64bit_tests }} run: | - export CXXFLAGS="-Werror -D_GLIBCXX_DEBUG" + export CXXFLAGS="-D_GLIBCXX_DEBUG" make clean make -j2 ARCH=x86-64-modern optimize=no debug=yes build ../tests/signature.sh $benchref