Skip to content

build

build #961

Workflow file for this run

name: build
on:
push:
pull_request:
workflow_dispatch:
jobs:
xcode_14_3_simulator:
runs-on: macos-13-xl
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}}' build-for-testing
- name: Test
run: xcodebuild -scheme FlyingFox-Package -sdk iphonesimulator16.4 -destination '${{env.XCODE_DESTINATION}}' test-without-building
xcode_15_0_simulator:
runs-on: macos-13-xl
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}}' build-for-testing
- name: Test
run: xcodebuild -scheme FlyingFox-Package -sdk iphonesimulator17.0 -destination '${{env.XCODE_DESTINATION}}' test-without-building