Disable -Werror on minimum-cmake CI

This commit is contained in:
JosiahWI 2023-05-15 13:06:10 -05:00
parent d9c5c29812
commit 584a46f378
No known key found for this signature in database
GPG Key ID: C7BB8573A4ABC4B9
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ jobs:
run: |
mkdir build
cd build
cmake -G Ninja -DCMAKE_C_COMPILER=/usr/bin/gcc-5 -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-Werror" ..
cmake -G Ninja -DCMAKE_C_COMPILER=/usr/bin/gcc-5 -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_BUILD_TYPE=Release
cmake --build .
cd ..