Skip to content

Commit cecfc60

Browse files
committed
Merge branch 'main' into mecab_cpp
2 parents 06249ef + 858363c commit cecfc60

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/archlinux.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest]
12+
mode: [debug, release]
1213

1314
container: archlinux:base-devel
1415
runs-on: ${{ matrix.os }}
1516

1617
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 }}
1819
cancel-in-progress: true
1920

2021
env:
@@ -34,13 +35,13 @@ jobs:
3435

3536
- name: Build gd-tools
3637
run: |
37-
xmake config -y -m release
38+
xmake config -y -m ${{ matrix.mode }}
3839
xmake config -y --tests=n
3940
xmake build -y -vw "gd-tools"
4041
4142
- name: Build tests
4243
run: |
43-
xmake config -y -m release
44+
xmake config -y -m ${{ matrix.mode }}
4445
xmake config -y --tests=y
4546
xmake build -y -vw "tests"
4647

0 commit comments

Comments
 (0)