Skip to content

v3.0 ios

v3.0 ios #131

Workflow file for this run

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