summaryrefslogtreecommitdiff
path: root/.github/workflows/codeql.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/codeql.yml')
-rw-r--r--.github/workflows/codeql.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 052f2ef4b8..972c694487 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -22,6 +22,7 @@ jobs:
- ubuntu-latest
- macos-latest
- macos-26-intel
+ - windows-latest
steps:
- name: Checkout
@@ -38,13 +39,13 @@ jobs:
- name: Build default config
shell: bash
run: |
- cmake -B build-default -S .
+ cmake -B build-default -S . ${{ runner.os == 'Windows' && '-A x64' || '' }}
cmake --build build-default -j4
- name: Build compat config without optim/strategies, with reduced mem
shell: bash
run: |
- cmake -B build-compat -S . -DZLIB_COMPAT=ON -DWITH_NEW_STRATEGIES=OFF -DWITH_OPTIM=OFF -DWITH_REDUCED_MEM=ON
+ cmake -B build-compat -S . -DZLIB_COMPAT=ON -DWITH_NEW_STRATEGIES=OFF -DWITH_OPTIM=OFF -DWITH_REDUCED_MEM=ON ${{ runner.os == 'Windows' && '-A x64' || '' }}
cmake --build build-compat -j4
- name: Perform CodeQL Analysis