-
-
Notifications
You must be signed in to change notification settings - Fork 62
119 lines (94 loc) · 2.82 KB
/
android.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Android CI
env:
cache-name: android-gradle
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
setup:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Cache build artifacts
uses: ./.github/actions/cache-build-paths
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Assemble with Gradle
run: ./gradlew jar --no-daemon
unit-tests:
needs: setup
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Cache build artifacts
uses: ./.github/actions/cache-build-paths
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run unit tests
run: ./gradlew test --no-daemon
connected-tests:
needs: setup
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
cache: 'gradle'
- name: Cache build artifacts
uses: ./.github/actions/cache-build-paths
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Save logcat output
run: adb logcat > logcat.txt &
- name: Run connected tests
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 28
target: google_apis
arch: x86_64
profile: Nexus 6
ram-size: 2048MB
force-avd-creation: false
emulator-options: -no-snapshot -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: |
chmod +x .github/workflows/script/run_tests.sh
.github/workflows/script/run_tests.sh
- name: Upload failed tests screenshots
if: failure()
uses: actions/upload-artifact@v4
with:
name: screenshots
path: Screenshots
- name: Upload logcat output
if: always()
uses: actions/upload-artifact@v4
with:
name: logcat
path: logcat.txt