Add CI for Windows x86 + MSVC

This commit is contained in:
Saúl Ibarra Corretgé 2024-06-17 09:17:21 +02:00
parent a008f1c098
commit 2ea0848616

View file

@ -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