Skip to content

Commit

Permalink
Add CI for Windows x86 + MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Jun 17, 2024
1 parent a008f1c commit 2ea0848
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,13 @@ jobs:
strategy:
fail-fast: false
matrix:
arch: [x64, Win32]
buildType: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: build
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 function_source
- name: stats
Expand Down

0 comments on commit 2ea0848

Please sign in to comment.