File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 10
10
permissions :
11
11
actions : read # for github/codeql-action/init to get workflow details
12
12
security-events : write # for github/codeql-action/analyze to upload SARIF results
13
- runs-on : ubuntu-latest
13
+ runs-on : windows-2019
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+ language : [ java, cpp ]
14
18
15
19
steps :
16
20
- uses : actions/checkout@v4
@@ -24,12 +28,12 @@ jobs:
24
28
- name : Initialize CodeQL
25
29
uses : github/codeql-action/init@v3
26
30
with :
27
- languages : java
31
+ languages : ${{ matrix.language }}
28
32
29
33
- uses : gradle/gradle-build-action@v3
30
34
with :
31
35
# skipping build cache is needed so that all modules will be analyzed
32
- arguments : assemble --no-build-cache
36
+ arguments : assemble -Dai.etw.native.build=release - -no-build-cache
33
37
34
38
- name : Perform CodeQL analysis
35
39
uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments