We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd25f9 commit 910bae1Copy full SHA for 910bae1
1 file changed
samples/kotlin-2-tests/local-check.sh
@@ -8,5 +8,19 @@ log() {
8
echo "\033[0;32m> $1\033[0m"
9
}
10
11
-./gradlew clean build
12
-log "kotlin-2-test build success"
+./gradlew clean assembleDebug
+log "kotlin-2-tests mobile android success"
13
+
14
+if ! command -v xcodebuild &> /dev/null
15
+then
16
+ log "xcodebuild could not be found, skip ios checks"
17
18
+ ./gradlew test lint
19
+ log "kotlin-2-tests test success"
20
21
+ ./gradlew assembleDebug assembleRelease jsJar jvmJar
22
+ log "kotlin-2-tests build success"
23
+else
24
+ ./gradlew build
25
+ log "kotlin-2-tests success"
26
+fi
0 commit comments