-
Notifications
You must be signed in to change notification settings - Fork 1
260 lines (225 loc) · 7.7 KB
/
health-api-library.check.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
name: Check Health API Library
on:
push:
paths:
- 'health-api-library/**'
- 'core-api-library/**'
- 'gradle/**'
branches:
- '**'
tags-ignore:
- '**'
pull_request:
types: [opened, edited, reopened]
paths:
- 'health-api-library/**'
- 'core-api-library/**'
- 'gradle/**'
workflow_call:
secrets:
GINI_MOBILE_TEST_CLIENT_SECRET:
required: true
workflow_dispatch:
inputs:
clientId:
description: 'Client ID'
required: true
type: string
default: ''
clientSecret:
description: 'Client Secret'
required: true
type: string
default: ''
healthApiBaseUrl:
description: 'Health API Base URL'
required: true
type: string
default: ''
userCenterBaseUrl:
description: 'User Center Base URL'
required: true
type: string
default: ''
payApiBaseUrl:
description: 'Pay API Base URL'
required: true
type: string
default: ''
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run unit tests
run: ./gradlew health-api-library:library:testDebugUnitTest
- name: archive unit test results
if: always()
uses: actions/upload-artifact@v4
with:
name: health-api-library-unit-test-results
path: health-api-library/library/build/reports/tests
# should be investigated later, right now does not work with AGP 8
# read this article for some help: https://about.codecov.io/blog/code-coverage-for-android-development-using-kotlin-jacoco-github-actions-and-codecov/
#
# - name: create unit test coverage report
# run: ./gradlew health-api-library:library:jacocoTestDebugUnitTestReport
#
# - name: archive unit test coverage report
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: health-api-library-unit-test-coverage
# path: health-api-library/library/build/jacoco/jacocoHtml
instrumented-test:
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [22, 33]
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: enable KVM group perms for emulator
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: avd cache
uses: actions/cache@v4
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-x86_64-${{ matrix.api-level }}-${{ github.ref_name }}
- 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: ${{ matrix.api-level }}
arch: x86_64
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -no-audio -no-boot-anim -camera-back none
disable-animations: true
script: echo "Generated AVD snapshot for caching."
- name: run instrumented tests
timeout-minutes: 20
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
arch: x86_64
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: >
adb uninstall net.gini.android.health.api.test ;
./gradlew health-api-library:library:connectedCheck
-PtestClientId="${{ inputs.clientId != '' && inputs.clientId || 'gini-mobile-test'}}"
-PtestClientSecret="${{ inputs.clientSecret != '' && inputs.clientSecret || secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}"
-PtestApiUri="${{ inputs.healthApiBaseUrl != '' && inputs.healthApiBaseUrl || 'https://health-api.gini.net' }}"
-PtestUserCenterUri="${{ inputs.userCenterBaseUrl != '' && inputs.userCenterBaseUrl || 'https://user.gini.net' }}"
-PtestBankApiUri="${{ inputs.payApiBaseUrl != '' && inputs.payApiBaseUrl || 'https://pay-api.gini.net' }}"
- name: archive instrumented test results
if: always()
uses: actions/upload-artifact@v4
with:
name: health-api-library-instrumented-test-results-api-level-${{ matrix.api-level }}
path: health-api-library/library/build/outputs/androidTest-results/connected
checkstyle:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run checkstyle
run: ./gradlew health-api-library:library:checkstyle
- name: archive checkstyle report
uses: actions/upload-artifact@v4
with:
name: health-api-library-checkstyle-report
path: health-api-library/library/build/reports/checkstyle/*.html
pmd:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run pmd
run: ./gradlew health-api-library:library:pmd
- name: archive pmd report
uses: actions/upload-artifact@v4
with:
name: health-api-library-pmd-report
path: health-api-library/library/build/reports/pmd/*.html
android-lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run android lint
run: ./gradlew health-api-library:library:lint
- name: archive android lint report
uses: actions/upload-artifact@v3
with:
name: health-api-library-android-lint-report
path: health-api-library/library/build/reports/lint-results*.html
detekt:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run detekt
run: ./gradlew health-api-library:library:detekt
- name: archive detekt report
uses: actions/upload-artifact@v4
with:
name: health-api-library-detekt-report
path: health-api-library/library/build/reports/detekt/*.html
ktlint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run ktlint
run: ./gradlew health-api-library:library:ktlintCheck
- name: archive ktlint report
uses: actions/upload-artifact@v4
with:
name: health-api-library-ktlint-report
path: health-api-library/library/build/reports/ktlint/**/*.html