From 0ef80ef1c9861450cdaf59c0ea405da209995466 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Wed, 27 Sep 2023 22:16:12 +0200 Subject: MiniCI: ignore deprecated declarations warning To avoid tests suddenly failing after a dependency update. --- minici.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minici.yaml b/minici.yaml index b52b3d9..4a6d65d 100644 --- a/minici.yaml +++ b/minici.yaml @@ -1,12 +1,12 @@ job build: shell: - - make CC=gcc CFLAGS=-Werror CXXFLAGS=-Werror + - make CC=gcc CFLAGS="-Werror -Wno-deprecated-declarations" CXXFLAGS="-Werror -Wno-deprecated-declarations" artifact erebos: path: build/src/erebos job clang: shell: - - make CC=clang CFLAGS=-Werror CXXFLAGS=-Werror + - make CC=clang CFLAGS="-Werror -Wno-deprecated-declarations" CXXFLAGS="-Werror -Wno-deprecated-declarations" job test: uses: -- cgit v1.2.3