This repository was archived by the owner on Feb 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +48
-3
lines changed Expand file tree Collapse file tree 4 files changed +48
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : master
2
+
3
+ on :
4
+ push :
5
+ paths-ignore :
6
+ - ' doc/**'
7
+ - ' documentation/**'
8
+ - ' *.md'
9
+ - ' *.yml'
10
+ branches :
11
+ - master
12
+
13
+ jobs :
14
+ linux :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout the repo
18
+ uses : actions/checkout@v3
19
+ with :
20
+ fetch-depth : 0
21
+
22
+ - name : Setup JDK
23
+ uses : actions/setup-java@v3
24
+ with :
25
+ distribution : ' temurin'
26
+ java-version : ' 17'
27
+
28
+ - name : Run tests
29
+ run : ./gradlew check
30
+
31
+ - name : Bundle the build report
32
+ if : failure()
33
+ run : find . -type d -name 'reports' | zip -@ -r build-reports.zip
34
+
35
+ - name : Upload the build report
36
+ if : failure()
37
+ uses : actions/upload-artifact@master
38
+ with :
39
+ name : error-report
40
+ path : build-reports.zip
41
+
42
+ env :
43
+ GRADLE_OPTS : -Dorg.gradle.configureondemand=true -Dorg.gradle.parallel=false -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>>().configureEach
54
54
55
55
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
56
56
kotlinOptions {
57
- apiVersion = " 1.8 "
57
+ apiVersion = " 1.9 "
58
58
verbose = true
59
59
}
60
60
}
Original file line number Diff line number Diff line change 1
1
kotlin.mpp.stability.nowarn =true
2
+ kotlin.native.ignoreDisabledTargets =true
3
+ kotlin.native.cacheKind =none
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- kotlin = " 1.8.21 "
3
- kotest = " 5.6.2 "
2
+ kotlin = " 1.9.10 "
3
+ kotest = " 5.7.1 "
4
4
ktor = " 2.3.4"
5
5
6
6
[libraries ]
You can’t perform that action at this time.
0 commit comments