Skip to content

Commit

Permalink
modify ci runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Jan 23, 2024
1 parent d3de649 commit 724b6f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [windows-2019, windows-2022]
kind: [static, shared]
arch: [x64, x86, arm64]
vs_runtime: [MT, MD]
runtimes: [MT, MD]

runs-on: ${{ matrix.os }}

Expand All @@ -36,8 +36,8 @@ jobs:
- name: Tests
run: |
if ("${{ matrix.os }}" -eq "windows-2019") {
xmake l ./scripts/test.lua -vD -a ${{ matrix.arch }} -k ${{ matrix.kind }} --vs_runtime=${{ matrix.vs_runtime }} --vs_sdkver=10.0.19041.0 --linkjobs=2
xmake l ./scripts/test.lua -vD -a ${{ matrix.arch }} -k ${{ matrix.kind }} --runtimes=${{ matrix.runtimes }} --vs_sdkver=10.0.19041.0 --linkjobs=2
} else {
xmake l ./scripts/test.lua -vD -a ${{ matrix.arch }} -k ${{ matrix.kind }} --vs_runtime=${{ matrix.vs_runtime }} --linkjobs=2
xmake l ./scripts/test.lua -vD -a ${{ matrix.arch }} -k ${{ matrix.kind }} --runtimes=${{ matrix.runtimes }} --linkjobs=2
}

0 comments on commit 724b6f8

Please sign in to comment.