Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 11 additions & 5 deletions .github/workflows/validate-pr.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
name: Validate PR
name: Build

on:
workflow_dispatch:
pull_request:
branches: [ main ]
push:
branches: [ main ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# Cancel only when the run is NOT on `main` branch
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
validate-pr:
Expand All @@ -24,8 +27,11 @@ jobs:

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
add-job-summary: 'always'
cache-read-only: true

- name: Clean Build with Gradle
- name: Build with Gradle
run: ./gradlew clean build

- name: Upload JUnit test results
Expand All @@ -36,7 +42,7 @@ jobs:
path: '**/build/test-results/test/*.xml'

- name: Disable Auto-Merge on Fail
if: failure()
if: failure() && github.event_name == 'pull_request'
run: gh pr merge --disable-auto "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- uses: actions/setup-java@v5
with:
Expand All @@ -52,14 +54,14 @@ jobs:

- name: Build Kotlin sources
run: |
./gradlew \
./gradlew \
:kotlin-sdk-core:compileKotlinJvm \
:kotlin-sdk-client:compileKotlinJvm \
:kotlin-sdk-server:compileKotlinJvm \
:kotlin-sdk:compileKotlinJvm \
:kotlin-sdk-test:compileKotlinJvm \
-Pkotlin.incremental=false \
--no-daemon --stacktrace
--no-daemon --stacktrace --rerun-tasks

- name: Analyze
uses: github/codeql-action/analyze@v3
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ kotlin.code.style=official
kotlin.daemon.jvmargs=-Xmx4G
# MPP
kotlin.mpp.enableCInteropCommonization=true
kotlin.native.ignoreDisabledTargets=true
Loading