We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2a02a6 commit 2c475eeCopy full SHA for 2c475ee
1 file changed
.github/workflows/build.yml
@@ -22,19 +22,22 @@ jobs:
22
mode:
23
- debug
24
- release
25
+ toolchain:
26
+ - msvc
27
+ - clang-cl
28
steps:
- - name: Checkout
29
+ - name: checkout
30
uses: actions/checkout@v4
31
with:
32
submodules: recursive
33
- - name: Setup XMake
34
+ - name: setup
35
uses: xmake-io/github-action-setup-xmake@v1
36
37
xmake-version: "latest"
38
- - name: Configure
- run: xmake config -y --mode=${{ matrix.mode }}
39
+ - name: config
40
+ run: xmake config -y --mode=${{ matrix.mode }} --toolchain=${{ matrix.toolchain }}
41
- - name: Build
42
+ - name: build
43
run: xmake build -y -vD
0 commit comments