-
Notifications
You must be signed in to change notification settings - Fork 33
221 lines (193 loc) · 8.38 KB
/
test_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
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
# https://github.com/natario1/CameraView/blob/master/.github/workflows/build.yml
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://dev.to/edvinasbartkus/running-react-native-detox-tests-for-ios-and-android-on-github-actions-2ekn
# https://github.com/wix/Detox/issues/2617
name: E2E tests, Android
on: [push]
jobs:
build:
# https://github.community/t/how-to-stop-github-actions-workflow-to-trigger-when-the-pull-request-is-from-dependabot-preview/116486
if: github.actor != 'dependabot[bot]'
name: Build APKs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
# https://github.com/jlumbroso/free-disk-space?tab=readme-ov-file#example
android: false
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Decode sentry.properties file
uses: timheuer/[email protected]
with:
fileDir: "./android/"
fileName: "sentry.properties"
encodedString: ${{ secrets.SENTRY_PROPERTIES_BASE64 }}
- name: Install dependencies (yarn)
run: yarn install --no-progress --network-timeout 100000 --network-concurrency 1
- run: cp google-services.json.dist android/app/google-services.json
- name: Enable clear text traffic in release builds
run: |
sudo apt install xmlstarlet
xmlstarlet ed --inplace --ps --insert "/manifest/application" --type attr -n "android:usesCleartextTraffic" -v "true" android/app/src/main/AndroidManifest.xml
- name: Configure .env variables
run: |
cp .env.dist .env
sed -i -e 's/GOOGLE_MAPS_BROWSER_KEY=/GOOGLE_MAPS_BROWSER_KEY=${{ secrets.GOOGLE_MAPS_BROWSER_KEY }}/' .env
sed -i -e 's/GOOGLE_MAPS_ANDROID_KEY=/GOOGLE_MAPS_ANDROID_KEY=${{ secrets.GOOGLE_MAPS_ANDROID_KEY }}/' .env
sed -i -e 's/FACEBOOK_APP_ID=/FACEBOOK_APP_ID=${{ secrets.FACEBOOK_APP_ID }}/' .env
sed -i -e 's/FACEBOOK_CLIENT_TOKEN=/FACEBOOK_CLIENT_TOKEN=${{ secrets.FACEBOOK_CLIENT_TOKEN }}/' .env
- name: Gradle cache
uses: gradle/actions/setup-gradle@v3
- name: Build app for Detox
run: node node_modules/.bin/detox build -c android.emu.release
env:
googleMapsApiKey: ${{ secrets.googleMapsApiKey }}
SENTRY_DISABLE_AUTO_UPLOAD: true
- name: Upload App APK
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: app-official-release.apk
path: android/app/build/outputs/apk/official/release/app-official-release.apk
- name: Upload Test APK
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: app-official-release-androidTest.apk
path: android/app/build/outputs/apk/androidTest/official/release/app-official-release-androidTest.apk
test:
# https://github.community/t/how-to-stop-github-actions-workflow-to-trigger-when-the-pull-request-is-from-dependabot-preview/116486
if: github.actor != 'dependabot[bot]'
name: Run Tests on Android Emulator
needs: build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./coopcycle-app-repo
# local coopcycle-web instance
env:
STRIPE_PUBLISHABLE_KEY: ${{ secrets.STRIPE_PUBLISHABLE_KEY }}
STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }}
STRIPE_CONNECT_CLIENT_ID: ${{ secrets.STRIPE_CONNECT_CLIENT_ID }}
strategy:
# Allow tests to continue on other devices if they fail on one device.
fail-fast: false
matrix:
EMULATOR_API_LEVEL:
# - 21
- 28
# - 33
steps:
- name: Set timezone
uses: szenius/[email protected]
with:
timezoneLinux: "Europe/Paris"
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
# https://github.com/jlumbroso/free-disk-space?tab=readme-ov-file#example
android: false
- uses: actions/checkout@v3
with:
path: coopcycle-app-repo
- name: Run CoopCycle Web
uses: ./coopcycle-app-repo/.github/actions/run-coopcycle-web
- name: Download App APK
uses: actions/download-artifact@v4
with:
name: app-official-release.apk
path: coopcycle-app-repo/android/app/build/outputs/apk/official/release
- name: Download Test APK
uses: actions/download-artifact@v4
with:
name: app-official-release-androidTest.apk
path: coopcycle-app-repo/android/app/build/outputs/apk/androidTest/official/release
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
cache-dependency-path: "coopcycle-app-repo/yarn.lock"
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Install dependencies (yarn)
run: yarn install --no-progress --network-timeout 100000 --network-concurrency 1
- name: Enable clear text traffic in release builds
run: |
sudo apt install xmlstarlet
xmlstarlet ed --inplace --ps --insert "/manifest/application" --type attr -n "android:usesCleartextTraffic" -v "true" android/app/src/main/AndroidManifest.xml
- name: Enable KVM (reactivecircus)
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
- run: sudo apt-get install libpulse0
- name: Gradle cache
uses: gradle/actions/setup-gradle@v3
# disable AVD caching for now; trying to solve 'No space left on device.' issue
# - name: AVD cache
# uses: actions/cache@v4
# id: avd-cache
# with:
# path: |
# ~/.android/avd/*
# ~/.android/adb*
# key: avd-${{ matrix.EMULATOR_API_LEVEL }}
#
# - 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.EMULATOR_API_LEVEL }}
# target: google_apis
# arch: x86_64
# profile: pixel_6
# 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: Disk usage (filesystem)
run: df -h
- name: Disk usage
run: du -h -a --max-depth=1 | sort -rh
- name: Run Detox tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.EMULATOR_API_LEVEL }}
target: default
arch: x86_64
profile: pixel_6
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
working-directory: coopcycle-app-repo
script: |
node node_modules/.bin/detox test -c android.emu.release --headless --device-name="test" --loglevel info
# node node_modules/.bin/detox test -c android.att.release --device-name="test" --take-screenshots all
# node node_modules/.bin/detox test -c android.att.release --device-name="test" --take-screenshots manual -o e2e/screenshots.config.json
# - name: List emulators
# if: false # useful only for debugging
# run: avdmanager list avd
- name: Upload screenshots artifacts
# if: github.ref == 'refs/heads/master'
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: detox-screenshots-android
path: coopcycle-app-repo/artifacts