forked from authpass/authpass
-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (68 loc) · 2.3 KB
/
driver_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
name: Driver Tests
on:
push:
pull_request:
branches:
- master
jobs:
# test is now run in `unit_test.yaml`
# flutter_test:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# - name: Checkout submodules
# shell: bash
# run: |
# auth_header="$(git config --local --get http.https://github.com/.extraheader)"
# git submodule sync --recursive
# git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
# - name: ci-install-deps
# env:
# BLACKBOX_SECRET: ${{ secrets.BLACKBOX_SECRET_KEY }}
# run: "./authpass/_tools/ci-install-deps.sh ios"
# - name: run test
# run: "cd authpass && ~/deps/flutter/bin/flutter test"
drive_ios:
runs-on: macos-latest
strategy:
matrix:
device:
# - "iPhone 8 (13.1)"
- "iPhone .* Pro Max "
fail-fast: true
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
# - name: Postdeploy
# env:
# BLACKBOX_SECRET: ${{ secrets.BLACKBOX_SECRET_KEY }}
# run: authpass/_tools/postdeploy.sh
- name: ci-install-deps
env:
BLACKBOX_SECRET: ${{ secrets.BLACKBOX_SECRET_KEY }}
run: "./authpass/_tools/ci-install-deps.sh ios"
- name: List all simulators
run: xcrun instruments -s
# get UUID simulator and boot a simulator on mac from command line
- name: Start Simulator
run: |
UDID=$(
xcrun instruments -s |
awk \
-F ' *[][]' \
-v 'device=${{ matrix.device }}' \
'$1 ~ device { print $2 }' | head -n 1
)
echo starting ${UDID}
xcrun simctl boot "${UDID:?No Simulator with this name found}"
- name: run test ${{ matrix.flavor }}
run: "cd authpass && ~/deps/flutter/bin/flutter drive --target=test_driver/app.dart"
- uses: actions/upload-artifact@v1
with:
name: driver-screenshots
path: authpass/build/screenshots