From c9c6b96ba92a50ae32515e1ffb76f1f18a7c78fe Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 15 Feb 2024 09:49:02 +1300 Subject: [PATCH] ci: add missing macOS build `test-macos.yml` included c++17 which was missing in `test-build.yml`. --- .github/workflows/test-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index b27a37a87..7f581af27 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -48,10 +48,13 @@ jobs: # Add os_name - os: ubuntu-20.04 os_name: focal - # macOS build + # macOS builds - os: macos-13 compiler: 'clang' cpp_std: 'c++11' + - os: macos-13 + compiler: 'clang' + cpp_std: 'c++17' # Limited testing for older compilers - os: ubuntu-20.04 os_name: focal