File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
os : [ubuntu-latest]
12
+ mode : [debug, release]
12
13
13
14
container : archlinux:base-devel
14
15
runs-on : ${{ matrix.os }}
15
16
16
17
concurrency :
17
- group : ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Archlinux
18
+ group : ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Archlinux-${{ matrix.mode }}
18
19
cancel-in-progress : true
19
20
20
21
env :
@@ -34,13 +35,13 @@ jobs:
34
35
35
36
- name : Build gd-tools
36
37
run : |
37
- xmake config -y -m release
38
+ xmake config -y -m ${{ matrix.mode }}
38
39
xmake config -y --tests=n
39
40
xmake build -y -vw "gd-tools"
40
41
41
42
- name : Build tests
42
43
run : |
43
- xmake config -y -m release
44
+ xmake config -y -m ${{ matrix.mode }}
44
45
xmake config -y --tests=y
45
46
xmake build -y -vw "tests"
46
47
You can’t perform that action at this time.
0 commit comments