diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2023-09-27 22:16:12 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2023-09-27 22:16:12 +0200 |
commit | 0ef80ef1c9861450cdaf59c0ea405da209995466 (patch) | |
tree | d984c3537bb4526d53431d08263311c0c26de132 | |
parent | 907384ea7d8a8056f591a0863a8d8d1882976f33 (diff) |
MiniCI: ignore deprecated declarations warning
To avoid tests suddenly failing after a dependency update.
-rw-r--r-- | minici.yaml | 4 |
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: |