Skip to content

Commit 2c475ee

Browse files
committed
ci: clang-cl
1 parent a2a02a6 commit 2c475ee

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,22 @@ jobs:
2222
mode:
2323
- debug
2424
- release
25+
toolchain:
26+
- msvc
27+
- clang-cl
2528
steps:
26-
- name: Checkout
29+
- name: checkout
2730
uses: actions/checkout@v4
2831
with:
2932
submodules: recursive
3033

31-
- name: Setup XMake
34+
- name: setup
3235
uses: xmake-io/github-action-setup-xmake@v1
3336
with:
3437
xmake-version: "latest"
3538

36-
- name: Configure
37-
run: xmake config -y --mode=${{ matrix.mode }}
39+
- name: config
40+
run: xmake config -y --mode=${{ matrix.mode }} --toolchain=${{ matrix.toolchain }}
3841

39-
- name: Build
42+
- name: build
4043
run: xmake build -y -vD

0 commit comments

Comments
 (0)