-
Notifications
You must be signed in to change notification settings - Fork 9
89 lines (71 loc) · 2.17 KB
/
android-regression.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
name: Run android regression tests
on:
workflow_dispatch:
inputs:
apk_url:
description: 'APK.tar.gz url to test'
required: true
type: string
default: 'https://oxen.rocks/oxen-io/session-android/dev/session-android-20240815T053242Z-93a28906f-universal.tar.xz'
sha_to_co:
description: 'oxen-io/session-appium sha to checkout (can be in a PR)'
required: true
type: string
default: '3c2ced878dba4947d9babec4ac92241c06e870c2'
push:
branches:
- test-docker-container
# ${{ inputs.apk_url }}
# ${{ inputs.sha_to_co }}
jobs:
android-regression:
runs-on: [self-hosted, linux, x64, qa-android]
env:
apk_url: 'https://oxen.rocks/oxen-io/session-android/dev/session-android-20240815T053242Z-93a28906f-universal.tar.xz'
sha_to_co: '3c2ced878dba4947d9babec4ac92241c06e870c2'
steps:
- uses: actions/checkout@v4
- name: Runner Details
run: |
echo "sha_to_co $sha_to_co"
echo "apk_url $apk_url"
# - name: Download APK
# run: |
# wget -q -O plop.apk.tar.xz $apk_url
# ls
# pwd
# - name: Extract APK
# run: |
# tar xf plop.apk.tar.xz
# ls
# pwd
# - name: Rename extracted folder
# run: |
# mv session-android-*universal extracted
# ls extracted
# pwd
- uses: actions/checkout@v4
with:
repository: 'burtonemily/session-appium'
ref: '3c2ced878dba4947d9babec4ac92241c06e870c2'
path: 'forked-session-appium'
- uses: actions/setup-node@v4
with:
# node-version-file: 'forked-session-appium/.nvmrc'
node-version: 18.15.0
- name: Install yarn
run: |
npm install -g yarn
corepack enable
yarn set version 4.1.1
- name: Install test dependencies
run: |
touch yarn.lock
cd forked-session-appium
ls
git status
touch yarn.lock
yarn install --immutable
- name: Run the Android tests
run: |
yarn test