Skip to content

Try to add cache validation #249

Try to add cache validation

Try to add cache validation #249

Workflow file for this run

name: iOS tests
on:
push:
branches: [ "main", "parallel-testing" ]
pull_request:
jobs:
parallel-testing:
name: Cloned simulator
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v3
# - name: Install xcbeautify
# run: |
# brew install xcbeautify
- name: Select Xcode version
run: sudo xcode-select -switch '/Applications/Xcode_15.3.app'
- name: Build & Test
env:
scheme: 'Client'
platform: ${{ 'iOS Simulator' }}
timeout-minutes: 15
run: |
# Get iPhone 15 iOS 17.4 UUID
deviceUUID=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone 15.*\(17\.4\).*' | grep -oE '([[A-F0-9]{4}\-?)*' | head -1 `
set -o pipefail && NSUnbufferedIO=YES xcodebuild -project Client/Client.xcodeproj -scheme Client -sdk 'iphonesimulator' -destination "platform=iOS Simulator,id=$deviceUUID" -parallel-testing-enabled YES -parallel-testing-worker-count 2 test 2>&1
#| xcbeautify --renderer github-actions
- name: Archive cli logs
if: always()
uses: actions/upload-artifact@v3
with:
name: cli-logs-clone-simulator
path: Client/logfile.txt
single-device-testing:
name: Normal simulator
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v3
# - name: Install xcbeautify
# run: |
# brew install xcbeautify
- name: Select Xcode version
run: sudo xcode-select -switch '/Applications/Xcode_15.3.app'
- name: Build & Test
env:
scheme: 'Client'
platform: ${{ 'iOS Simulator' }}
timeout-minutes: 15
run: |
# Get iPhone 15 iOS 17.4 UUID
deviceUUID=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone 15.*\(17\.4\).*' | grep -oE '([[A-F0-9]{4}\-?)*' | head -1 `
#run UIUnitTest server
set -o pipefail && NSUnbufferedIO=YES xcodebuild -project Client/Client.xcodeproj -scheme Client -sdk 'iphonesimulator' -destination "platform=iOS Simulator,id=$deviceUUID" test 2>&1
#| xcbeautify --renderer github-actions
- name: Archive cli logs
if: always()
uses: actions/upload-artifact@v3
with:
name: cli-logs-single-simulator
path: Client/logfile.txt