File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
build :
7
- name : AppleClang-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}
8
- runs-on : macos-latest
7
+ name : ${{matrix.os}}- AppleClang-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}
8
+ runs-on : ${{matrix.os}}
9
9
defaults :
10
10
run :
11
11
shell : bash
14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
+ os : [macos-11, macos-12]
17
18
build_type : [Release, Debug]
18
19
lib : [shared, static]
19
20
components : [minimal, lgpl, gpl]
48
49
uses : actions/cache@v2
49
50
with :
50
51
path : ${{env.CCACHE_DIR}}
51
- key : ${{runner .os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
52
- restore-keys : ${{runner .os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-
52
+ key : ${{matrix .os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
53
+ restore-keys : ${{matrix .os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-
53
54
54
55
- name : Configure
55
56
run : |
You can’t perform that action at this time.
0 commit comments