Skip to content

Commit d402755

Browse files
authored
add m1 macos ci (#803)
1 parent 9ec1711 commit d402755

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/macos-build.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ on:
1414
type: string
1515
jobs:
1616
build:
17-
runs-on: macos-latest
17+
runs-on: ${{ matrix.os }}
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
os: [macos-13, macos-14]
1822
env:
1923
boost_version: 1.84.0
2024
BOOST_ROOT: ${{ github.workspace }}/deps/boost-1.84.0
@@ -44,7 +48,7 @@ jobs:
4448
with:
4549
path: |
4650
${{ env.BOOST_ROOT }}.tar.xz
47-
key: ${{ runner.os }}-boost-${{ env.boost_version }}
51+
key: ${{ matrix.os }}-boost-${{ env.boost_version }}
4852

4953
- name: Extract Boost source tarball
5054
if: steps.cache-boost.outputs.cache-hit == 'true'
@@ -72,7 +76,7 @@ jobs:
7276
include
7377
lib
7478
share
75-
key: ${{ runner.os }}${{ inputs.build_variant }}-deps-${{ hashFiles('submodule-status') }}
79+
key: ${{ matrix.os }}${{ inputs.build_variant }}-deps-${{ hashFiles('submodule-status') }}
7680

7781
- name: Build dependencies
7882
if: steps.cache-deps.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)