From a3637ba171cccfbe1483ef72fb8527df5622f111 Mon Sep 17 00:00:00 2001 From: Serge Lamikhov-Center Date: Thu, 31 Oct 2024 15:54:56 +0000 Subject: [PATCH] Add macos-14 test runner --- .github/workflows/c-cpp.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 02c24a8..56ebf4a 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - os: [ubuntu-latest, ubuntu-20.04, windows-latest, windows-2019, macos-13] + os: [ubuntu-latest, ubuntu-20.04, windows-latest, windows-2019, macos-13, macos-14] build_type: [Release, Debug] cpp_compiler: [g++, clang++, cl] include: @@ -43,6 +43,12 @@ jobs: - os: macos-13 cpp_compiler: clang++ c_compiler: clang + - os: macos-14 + cpp_compiler: g++ + c_compiler: gcc + - os: macos-14 + cpp_compiler: clang++ + c_compiler: clang exclude: - os: windows-latest cpp_compiler: g++ @@ -60,6 +66,10 @@ jobs: cpp_compiler: cl - os: macos-13 cpp_compiler: cl + - os: macos-14 + cpp_compiler: cl + - os: macos-14 + cpp_compiler: cl steps: - uses: actions/checkout@v4