forked from webdriverio/appium-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (96 loc) · 2.95 KB
/
e2e-android-app.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
name: Functional Android App Tests
on:
push:
branches:
- main
pull_request:
jobs:
android-app:
strategy:
matrix:
include:
- chromedriverVersion: "74.0.3729.6"
apiLevel: 30
emuTag: google_apis
arch: x86
profile: Nexus 6P
- chromedriverVersion: "2.44"
apiLevel: 28
emuTag: default
arch: x86
profile: Nexus 6P
- chromedriverVersion: "2.28"
apiLevel: 25
emuTag: default
arch: x86
profile: Nexus 6P
- chromedriverVersion: "2.20"
apiLevel: 23
emuTag: default
arch: x86
profile: Nexus 6P
env:
CI: true
ANDROID_AVD: emulator
APPIUM_TEST_SERVER_PORT: 4723
APPIUM_TEST_SERVER_HOST: 0.0.0.0
_FORCE_LOGS: 1
# No hardware acceleration is available for emulators on Ubuntu:
# https://github.com/marketplace/actions/android-emulator-runner#can-i-use-this-action-on-linux-vms
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: yarn install
- run: |
mkdir apps
wget https://github.com/webdriverio/native-demo-app/releases/download/v0.4.0/Android-NativeDemoApp-0.4.0.apk -P apps
- run: |
npm config set legacy-peer-deps true
npm install -g appium@next
npm install --chromedriver_version="${{ matrix.chromedriverVersion }}"
npm install --no-save mjpeg-consumer
name: Install dev dependencies
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- run: |
cwd=$(pwd)
pushd "$cwd"
cd ~
appium driver install uiautomator2
nohup appium server \
--port=$APPIUM_TEST_SERVER_PORT \
--address=$APPIUM_TEST_SERVER_HOST \
--relaxed-security \
2>&1 > "$cwd/appium.log" &
popd
name: Start Appium server
- run: nohup adb logcat > logcat.log &
name: Capture logcat
- uses: reactivecircus/android-emulator-runner@v2
name: e2e_api${{ matrix.apiLevel }}
with:
script: yarn android.app
avd-name: ${{ env.ANDROID_AVD }}
sdcard-path-or-size: 1500M
api-level: ${{ matrix.apiLevel }}
disable-spellchecker: true
target: ${{ matrix.emuTag }}
arch: ${{ matrix.arch }}
profile: ${{ matrix.profile }}
- name: Save logcat output
if: ${{ always() }}
uses: actions/upload-artifact@master
with:
name: logcat-api${{ matrix.apiLevel }}
path: logcat.log
- name: Save server output
if: ${{ always() }}
uses: actions/upload-artifact@master
with:
name: appium-api${{ matrix.apiLevel }}
path: appium.log