Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ jobs:
languages: java-kotlin

- name: Build for CodeQL
# autobuild looks for 'testClasses' which doesn't exist in KMP; build manually instead
run: ./gradlew assembleDebug
# autobuild looks for 'testClasses' which doesn't exist in KMP; build manually instead.
# --no-build-cache + --rerun-tasks force Kotlin to actually recompile so the CodeQL
# tracer observes source. Without this, cached/up-to-date compile tasks are skipped and
# CodeQL fails with "no source code seen during build" (exit code 32).
run: ./gradlew assembleDebug --no-build-cache --rerun-tasks

- uses: github/codeql-action/analyze@v4
Loading