File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-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 : GCC-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.gpu}}
8
- runs-on : ubuntu-latest
7
+ name : ${{matrix.os}}- GCC-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.gpu}}
8
+ runs-on : ${{matrix.os}}
9
9
defaults :
10
10
run :
11
11
shell : bash
15
15
strategy :
16
16
fail-fast : true
17
17
matrix :
18
+ os :
19
+ - ubuntu-20.04
20
+ - ubuntu-22.04
18
21
build_type : [Release, Debug]
19
22
lib : [shared, static]
20
23
components : [minimal, lgpl, gpl]
68
71
uses : actions/cache@v2
69
72
with :
70
73
path : ${{env.CCACHE_DIR}}
71
- key : ${{runner .os}}-ccache-${{github.run_id}}
72
- restore-keys : ${{runner .os}}-ccache-
74
+ key : ${{matrix .os}}-ccache-${{github.run_id}}
75
+ restore-keys : ${{matrix .os}}-ccache-
73
76
74
77
- name : Configure
75
78
run : |
You can’t perform that action at this time.
0 commit comments