From 5c9e9edf079bb2ba6b4c93f92db3b6b2589e871b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Tue, 7 May 2024 08:28:31 +0200 Subject: [PATCH] Add macos-13 to workflow. (#1865) --- .github/workflows/ci-macos.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 55a5b85..45fef5d 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -7,12 +7,19 @@ on: jobs: build: - runs-on: macos-12 + runs-on: ${{matrix.os}} strategy: matrix: + os: [macos-12, macos-13] # g++-12 fails on some very innocent code... excluding it for now compiler: [clang++, g++-11, g++-13] + exclude: + # g++-11 and g++-13 fails on macos-13 with some linker assertion... excluing it for now + - os: macos-13 + compiler: g++-11 + - os: macos-13 + compiler: g++-13 steps: - uses: actions/checkout@v4