-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (94 loc) · 3.43 KB
/
e2e-test.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
name: "End-to-end test"
on:
workflow_dispatch:
inputs:
build_number:
description: 'Build number e.g v0.4.21 build-692'
required: true
default: 'v0.4.21 build-692'
repository_dispatch:
types: [trigger-test]
# Auto cancels previous running CI jobs in this PR on each new commit
concurrency:
group: ${{ github.workflow }}-${{ github.event.client_payload.ref }}
cancel-in-progress: true
jobs:
start-test:
runs-on: macos-latest
name: "Start Test"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: feat/fetch-apk-from-s3
token: "${{ secrets.GITHUB_TOKEN }}"
- name: Install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.5'
bundler-cache: true
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'adopt'
cache: 'gradle'
- name: Format APK directory name
run: bash ./scripts/APKFileDirectory.sh "${{ github.event.client_payload.build_number || github.event.inputs.build_number}}"
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Download file from S3
env:
DIRECTORY_NAME: ${{ env.DIRECTORY_NAME }}
run: |
aws s3 cp s3://dock-wallet/android-apks/$DIRECTORY_NAME/dock-wallet.apk ./app/
- name: Install Appium
run: |
yarn global add appium
appium driver install uiautomator2
appium driver install xcuitest
- name: Run E2E Tests
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 29
arch: x86_64
force-avd-creation: false
profile: Nexus 6
ram-size: 16384M
disk-size: 16384M
emulator-boot-timeout: 12000
emulator-options: -no-window -netdelay none -netspeed full -noaudio -no-boot-anim
disable-animations: true
script: |
appium &>/dev/null &
gradle
adb install -g ./app/dock-wallet.apk
adb shell am start -n 'com.dockapp/com.dockapp.MainActivity'
gradle test --stacktrace --info -DsuitXmlFile=mainSuite.xml
- name: Parse Test Report
if: always()
run: |
chmod +x ./scripts/ParseReports.sh ./scripts/BuildNumber.sh
./scripts/ParseReports.sh
./scripts/BuildNumber.sh
- name: Send slack notification
if: always()
uses: edge/simple-slack-notify@master
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#wallet-bot'
status: ${{ job.status }}
success_text: 'End-to-end test completed successfully'
failure_text: 'End-to-end test failed'
cancelled_text: 'End-to-end test cancelled'
fields: |
[
{ "title": "Action URL", "value": "${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}"},
{ "title": "Build Number", "value":"${github.event.client_payload.build_number}"},
{ "title": "Failed Tests", "value":"${env.ALL_FAILED_TESTS}"}
]