File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 14
14
type : string
15
15
jobs :
16
16
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]
18
22
env :
19
23
boost_version : 1.84.0
20
24
BOOST_ROOT : ${{ github.workspace }}/deps/boost-1.84.0
44
48
with :
45
49
path : |
46
50
${{ env.BOOST_ROOT }}.tar.xz
47
- key : ${{ runner .os }}-boost-${{ env.boost_version }}
51
+ key : ${{ matrix .os }}-boost-${{ env.boost_version }}
48
52
49
53
- name : Extract Boost source tarball
50
54
if : steps.cache-boost.outputs.cache-hit == 'true'
72
76
include
73
77
lib
74
78
share
75
- key : ${{ runner .os }}${{ inputs.build_variant }}-deps-${{ hashFiles('submodule-status') }}
79
+ key : ${{ matrix .os }}${{ inputs.build_variant }}-deps-${{ hashFiles('submodule-status') }}
76
80
77
81
- name : Build dependencies
78
82
if : steps.cache-deps.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments