Xcode 15 Simulator build #955
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
xcode_14_3_simulator: | |
runs-on: macos-13 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Version | |
run: swift --version | |
- name: '📱 Find Simulator' | |
run: ./simulator-find.sh 16.4 'iPhone 14 Pro' | |
- name: Build | |
run: xcodebuild -scheme FlyingFox-Package -sdk iphonesimulator16.4 -destination '${{env.XCODE_DESTINATION}}' -derivedDataPath build-for-testing | |
- name: Test | |
run: xcodebuild -scheme FlyingFox-Package -sdk iphonesimulator16.4 -destination '${{env.XCODE_DESTINATION}}' -derivedDataPath test-without-building | |
xcode_15_0_simulator: | |
runs-on: macos-13 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Version | |
run: swift --version | |
- name: '📱 Find Simulator' | |
run: ./simulator-find.sh 17.0 'iPhone 14 Pro' | |
- name: Build | |
run: xcodebuild -scheme FlyingFox-Package -sdk iphonesimulator17.0 -destination '${{env.XCODE_DESTINATION}}' -derivedDataPath build-for-testing | |
- name: Test | |
run: xcodebuild -scheme FlyingFox-Package -sdk iphonesimulator17.0 -destination '${{env.XCODE_DESTINATION}}' -derivedDataPath test-without-building |