From 0e8d6872d15cb02f658a62347d7e2912abb47bd8 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Sun, 21 Jan 2024 09:53:44 +0100 Subject: [PATCH] CI(freebsd): Build with C++17 The protobuf version on the FreeBSD CI image that we are using requires C++17. --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 8406e43e148..a5c8b53d651 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -12,7 +12,7 @@ freebsd_task: fetch_submodules_script: git submodule --quiet update --init --recursive build_script: - mkdir build && cd build - - cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_UNITY_BUILD=ON -Dtests=ON -Dsymbols=ON .. + - cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_UNITY_BUILD=ON -Dtests=ON -Dsymbols=ON -DCMAKE_CXX_STANDARD=17 .. - cmake --build . test_script: - cd build