summaryrefslogtreecommitdiff
path: root/minici.yaml
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2023-09-27 22:16:12 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2023-09-27 22:16:12 +0200
commit0ef80ef1c9861450cdaf59c0ea405da209995466 (patch)
treed984c3537bb4526d53431d08263311c0c26de132 /minici.yaml
parent907384ea7d8a8056f591a0863a8d8d1882976f33 (diff)
MiniCI: ignore deprecated declarations warning
To avoid tests suddenly failing after a dependency update.
Diffstat (limited to 'minici.yaml')
-rw-r--r--minici.yaml4
1 files 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: