Skip to content

Commit 3995dac

Browse files
committed
ci: clang-cl
1 parent 44de363 commit 3995dac

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
@@ -21,19 +21,22 @@ jobs:
2121
mode:
2222
- debug
2323
- release
24+
toolchain:
25+
- msvc
26+
- clang-cl
2427
steps:
25-
- name: Checkout
28+
- name: checkout
2629
uses: actions/checkout@v4
2730
with:
2831
submodules: recursive
2932

30-
- name: Setup XMake
33+
- name: setup
3134
uses: xmake-io/github-action-setup-xmake@v1
3235
with:
3336
xmake-version: "latest"
3437

35-
- name: Configure
36-
run: xmake config -y --mode=${{ matrix.mode }}
38+
- name: config
39+
run: xmake config -y --mode=${{ matrix.mode }} --toolchain=${{ matrix.toolchain }}
3740

38-
- name: Build
41+
- name: build
3942
run: xmake build -y -vD

0 commit comments

Comments
 (0)