forked from authpass/authpass
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.6 KB
/
integration_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
name: Integration Tests
on:
push:
pull_request:
branches:
- master
jobs:
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 integration_test
run: "cd authpass && ~/deps/flutter/bin/flutter test integration_test"
# - uses: actions/upload-artifact@v1
# with:
# name: driver-screenshots
# path: authpass/build/screenshots