Skip to content

Commit 1e77ea0

Browse files
committed
Run codeql against cpp also
1 parent 3ba1911 commit 1e77ea0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/codeql-daily.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ on:
77

88
jobs:
99
analyze:
10-
runs-on: ubuntu-latest
10+
runs-on: windows-2019
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
language: [ java, cpp ]
1115

1216
steps:
1317
- uses: actions/checkout@v4
@@ -21,12 +25,12 @@ jobs:
2125
- name: Initialize CodeQL
2226
uses: github/codeql-action/init@v3
2327
with:
24-
languages: java
28+
languages: ${{ matrix.language }}
2529

2630
- uses: gradle/gradle-build-action@v3
2731
with:
2832
# skipping build cache is needed so that all modules will be analyzed
29-
arguments: assemble --no-build-cache
33+
arguments: assemble -Dai.etw.native.build=release --no-build-cache
3034

3135
- name: Perform CodeQL analysis
3236
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)