From d2d73a70e865c589b6e99946a926589f11565d70 Mon Sep 17 00:00:00 2001 From: clanmills Date: Tue, 19 May 2020 22:24:33 +0100 Subject: [PATCH] Add -DCMAKE_CXX_FLAGS=-Wno-deprecated to stop the CI job logs from overflowing. --- ci/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/run.sh b/ci/run.sh index 2a6dfe40..52574802 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -17,6 +17,7 @@ if [[ "$(uname -s)" == 'Linux' ]]; then else export CMAKE_OPTIONS="$CMAKE_OPTIONS -DEXIV2_TEAM_USE_SANITIZERS=ON" fi +CMAKE_OPTIONS="$CMAKE_OPTIONS -DCMAKE_CXX_FLAGS=-Wno-deprecated" mkdir build cd build