Disable warning deprecated-declarations

This commit is contained in:
badaix 2021-10-16 22:17:27 +02:00
parent b4b9eb83ce
commit 4f2f16db33

View file

@ -30,6 +30,6 @@ jobs:
#- name: ccache dump config
# run: ccache -p
- name: cmake build
run: cmake -S . -B build -DBOOST_ROOT=boost_1_77_0 -DCMAKE_BUILD_TYPE=Release -DWERROR=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DREVISION=${{ github.sha }} -DCMAKE_CXX_FLAGS="-I/usr/local/include"
run: cmake -S . -B build -DBOOST_ROOT=boost_1_77_0 -DCMAKE_BUILD_TYPE=Release -DWERROR=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DREVISION=${{ github.sha }} -DCMAKE_CXX_FLAGS="-I/usr/local/include -Wno-deprecated-declarations"
- name: cmake make
run: cmake --build build --parallel 3