Skip to content

Commit

Permalink
Run codeql against cpp also
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Nov 9, 2024
1 parent 3ba1911 commit c057e5b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/codeql-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ on:

jobs:
analyze:
runs-on: ubuntu-latest
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
language: [ java, cpp ]

steps:
- uses: actions/checkout@v4
Expand All @@ -21,12 +25,12 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
languages: ${{ matrix.language }}

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

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
Expand Down

0 comments on commit c057e5b

Please sign in to comment.