summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ae784cdb84..019331b471 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -213,8 +213,12 @@ jobs:
path: artifacts/
no-shared-macos:
- runs-on: macos-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-13, macos-14]
if: github.server_url == 'https://github.com'
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: checkout fuzz/corpora submodule
@@ -511,7 +515,11 @@ jobs:
working-directory: ./build
out-of-readonly-source-and-install-macos:
- runs-on: macos-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-13, macos-14]
+ runs-on: ${{ matrix.os }}
if: github.server_url == 'https://github.com'
steps:
- uses: actions/checkout@v4