Add CI for Windows x86 + MSVC
This commit is contained in:
parent
a008f1c098
commit
2ea0848616
1 changed files with 2 additions and 1 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -356,12 +356,13 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
arch: [x64, Win32]
|
||||||
buildType: [Debug, Release]
|
buildType: [Debug, Release]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
cmake -B build -G "Visual Studio 17 2022"
|
cmake -B build -G "Visual Studio 17 2022" -A ${{matrix.arch}}
|
||||||
cmake --build build --config ${{matrix.buildType}} --target qjs_exe
|
cmake --build build --config ${{matrix.buildType}} --target qjs_exe
|
||||||
cmake --build build --config ${{matrix.buildType}} --target function_source
|
cmake --build build --config ${{matrix.buildType}} --target function_source
|
||||||
- name: stats
|
- name: stats
|
||||||
|
|
Loading…
Reference in a new issue