-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
41 lines (37 loc) · 1.34 KB
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
task:
name: 'AndroidNative Tests (linux)'
container:
image: cirrusci/android-sdk:tools
cpu: 8
memory: 16G
kvm: true
only_if: $CIRRUS_BRANCH == "main" || $CIRRUS_PR != ""
# https://youtrack.jetbrains.com/issue/KT-42693 fixed in 1.6.0
# https://askubuntu.com/a/1252113
fix_42693_script: sudo apt-get update && sudo apt-get install libtinfo5
publish_script: ./gradlew publishToDirectorySnapshot
test_script: ./gradlew sample:runAllAndroidNativeTests --stacktrace
task:
name: 'AndroidJvm Tests (linux)'
container:
image: cirrusci/android-sdk:tools
cpu: 8
memory: 16G
kvm: true
only_if: $CIRRUS_BRANCH == "main" || $CIRRUS_PR != ""
# https://youtrack.jetbrains.com/issue/KT-42693 fixed in 1.6.0
# https://askubuntu.com/a/1252113
fix_42693_script: sudo apt-get update && sudo apt-get install libtinfo5
publish_script: ./gradlew publishToDirectorySnapshot
test_script: ./gradlew sample:runAndroidTests --stacktrace
task:
name: 'Inspect system images (linux)'
container:
image: cirrusci/android-sdk:tools
cpu: 8
memory: 16G
kvm: true
only_if: $CIRRUS_BRANCH == "images_inspection"
fix_42693_script: sudo apt-get update && sudo apt-get install libtinfo5
publish_script: ./gradlew publishToDirectorySnapshot
test_script: ./gradlew sample:inspectAllAndroidImages --drop=52 --stacktrace