From 5a591cfbbad809c82f1d9370418ae9b01ab18348 Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Wed, 25 Sep 2024 21:58:36 +0200 Subject: [PATCH] ci: remove Werror from entrypoint --- ci/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/entrypoint.sh b/ci/entrypoint.sh index 680207f..779d753 100755 --- a/ci/entrypoint.sh +++ b/ci/entrypoint.sh @@ -4,7 +4,7 @@ set -o errexit set -o nounset 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 ctest -C Release --output-on-failure cpack --build /libcreate/build -G DEB