Skip to content

Commit bf77d4c

Browse files
committed
Refine CodeQL workflow: update Kotlin build steps to target individual modules separately instead of building all at once
1 parent 1a8c3ce commit bf77d4c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/codeql.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,13 @@ jobs:
5353
- name: Build Kotlin sources
5454
run: |
5555
./gradlew \
56-
:build -Pkotlin.incremental=false \
57-
--no-daemon --stacktrace --parallel
56+
:kotlin-sdk-core:compileKotlinJvm \
57+
:kotlin-sdk-client:compileKotlinJvm \
58+
:kotlin-sdk-server:compileKotlinJvm \
59+
:kotlin-sdk:compileKotlinJvm \
60+
:kotlin-sdk-test:compileKotlinJvm \
61+
-Pkotlin.incremental=false \
62+
--no-daemon --stacktrace
5863
5964
- name: Analyze
6065
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)