ci: remove Werror from entrypoint

This commit is contained in:
Konstantin Lampalzer 2024-09-25 21:58:36 +02:00
parent e51895fa18
commit 5a591cfbba

View file

@ -4,7 +4,7 @@ set -o errexit
set -o nounset set -o nounset
set -o pipefail set -o pipefail
cmake -B /libcreate/build -S /libcreate -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS='-Werror' cmake -B /libcreate/build -S /libcreate -DCMAKE_BUILD_TYPE=Release
cmake --build /libcreate/build --config Release cmake --build /libcreate/build --config Release
ctest -C Release --output-on-failure ctest -C Release --output-on-failure
cpack --build /libcreate/build -G DEB cpack --build /libcreate/build -G DEB