From cb02482641f869284630d7b157d77fbd210623c6 Mon Sep 17 00:00:00 2001 From: Philipp Grulich Date: Tue, 6 Feb 2024 07:47:46 +0100 Subject: [PATCH] first commit --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 325c6f03..34c8a58a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ 'ubuntu-20.04', 'ubuntu-22.04', 'macos-13' ] + os: [ 'ubuntu-20.04', 'ubuntu-22.04', 'macos-13', 'macos-14' ] include: - os: 'ubuntu-20.04' cc: 'gcc-10' @@ -19,6 +19,9 @@ jobs: - os: 'macos-13' cc: 'clang' cxx: 'clang++' + - os: 'macos-14' + cc: 'clang' + cxx: 'clang++' env: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }}