File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 branches : [ main ]
88 workflow_dispatch :
99
10+ # A newer push supersedes any in-flight run for the same ref.
11+ concurrency :
12+ group : build-${{ github.ref }}
13+ cancel-in-progress : true
14+
1015jobs :
1116 test :
1217 name : Run tests and collect coverage
2328 with :
2429 distribution : temurin
2530 java-version : 21
26- cache : gradle
31+
32+ # Persists the Gradle home incl. the build and configuration caches across runs.
33+ - name : Set up Gradle
34+ uses : gradle/actions/setup-gradle@v4
35+ with :
36+ cache-read-only : false
37+ cache-encryption-key : ${{ secrets.GRADLE_ENCRYPTION_KEY }}
2738
2839 - name : Cache Kotlin/Native toolchain
2940 uses : actions/cache@v4
Original file line number Diff line number Diff line change 11import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
22
33plugins {
4- id(" com.eignex.kmp" ) version " 1.2.2 "
4+ id(" com.eignex.kmp" ) version " 1.2.5 "
55 kotlin(" plugin.serialization" ) version " 2.3.20"
66}
77
Original file line number Diff line number Diff line change 11org.gradle.configuration-cache =true
2+ org.gradle.caching =true
23kotlin.suppressGradlePluginWarnings =IncorrectCompileOnlyDependencyWarning
34org.gradle.jvmargs =-Xmx4g -XX:MaxMetaspaceSize =1g
45org.gradle.workers.max =4
You can’t perform that action at this time.
0 commit comments