-
Notifications
You must be signed in to change notification settings - Fork 6
176 lines (147 loc) · 4.7 KB
/
build.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: Build
on:
workflow_dispatch:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
- '!renovate/**'
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
linter:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repositoryy
uses: actions/checkout@v4
- name: Setup java 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup gradle
uses: ./.github/workflows/gradle-cache
with:
encoded_local_properties: ${{ secrets.LOCAL_PROPERTIES }}
- name: Check spotless
run: ./gradlew spotlessCheck
- name: Check detekt
run: ./gradlew detekt
assemble:
needs: linter
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup java 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup gradle
uses: ./.github/workflows/gradle-cache
with:
encoded_local_properties: ${{ secrets.LOCAL_PROPERTIES }}
- name: Build debug
run: ./gradlew assembleDebug
- name: Upload apk
uses: actions/upload-artifact@v4
with:
name: build-outputs
path: app/build/outputs/apk
run-test:
needs: linter
runs-on: macos-latest
timeout-minutes: 45
env:
ApiLevel: 29
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup java 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup gradle
uses: ./.github/workflows/gradle-cache
with:
encoded_local_properties: ${{ secrets.LOCAL_PROPERTIES }}
- name: Run unit test
run: ./gradlew testDebugUnitTest
- name: Generate test results
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Unit test results
path: '**/build/test-results/testDebugUnitTest/TEST-*.xml'
reporter: java-junit
fail-on-error: false
- name: Setup AVD cache
uses: actions/cache@v4
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-${{ env.ApiLevel }}
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ env.ApiLevel }}
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: false
script: echo "Generated AVD snapshot for caching."
- name: Run android tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ env.ApiLevel }}
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew connectedDebugAndroidTest
- name: Delete xml files without tests
run: find . -type f -path '**/build/outputs/androidTest-results/connected/debug/TEST-*.xml' -exec grep -q 'tests="0"' {} \; -exec rm -f {} \;
- name: Generate android test results
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Android test results
path: '**/build/outputs/androidTest-results/connected/debug/TEST-*.xml'
reporter: java-junit
fail-on-error: false
- name: Generate jacoco report
run: ./gradlew jacocoMergeAllDebugReports
- uses: actions/upload-artifact@v4
with:
name: jacoco
path: build/reports/jacoco/jacocoMergeAllDebugReports
publish-coverage:
needs: run-test
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ github.ref == 'refs/heads/master' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: jacoco
- name: Generate Jacoco Badge
uses: cicirello/jacoco-badge-generator@v2
with:
jacoco-csv-file: jacocoMergeAllDebugReports.csv
badges-directory: html/badges
coverage-label: Coverage
- name: Publish coverage report to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: coverage
folder: html