-
Notifications
You must be signed in to change notification settings - Fork 82
78 lines (64 loc) · 1.96 KB
/
ios-appcenter.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
name: iOS AppCenter Tests
on:
workflow_dispatch:
push:
branches: [ master ]
paths:
- '.github/workflows/ios-appcenter.yml'
- 'binding/ios/RhinoAppTest/**'
- 'resources/.test/**'
- 'resources/audio_samples/**'
pull_request:
branches: [ master, 'v[0-9]+.[0-9]+' ]
paths:
- '.github/workflows/ios-appcenter.yml'
- 'binding/ios/RhinoAppTest/**'
- 'resources/.test/**'
- 'resources/audio_samples/**'
defaults:
run:
working-directory: binding/ios/RhinoAppTest
jobs:
build:
name: Run iOS Tests on AppCenter
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install Cocoapods
run: gem install cocoapods
- name: Install AppCenter CLI
run: npm install -g appcenter-cli
- name: Make build dir
run: mkdir ddp
- name: Install resource script dependency
run: |
brew update
brew install convmv
- name: Copy test_resources
run: ./copy_test_resources.sh
- name: Run Cocoapods
run: pod install
- name: Inject AppID
run: sed -i '.bak' 's:{TESTING_ACCESS_KEY_HERE}:${{secrets.PV_VALID_ACCESS_KEY}}:'
RhinoAppTestUITests/BaseTest.swift
- name: XCode Build
run: xcrun xcodebuild build-for-testing
-configuration Debug
-workspace RhinoAppTest.xcworkspace
-sdk iphoneos
-scheme RhinoAppTest
-derivedDataPath ddp
CODE_SIGNING_ALLOWED=NO
- name: Run Tests on AppCenter
run: appcenter test run xcuitest
--token ${{secrets.APPCENTERAPITOKEN}}
--app "Picovoice/Rhino-iOS"
--devices "Picovoice/ios-min-max"
--test-series "rhino-ios"
--locale "en_US"
--build-dir ddp/Build/Products/Debug-iphoneos