Skip to content

Try to fix CI-2

Try to fix CI-2 #55

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_check:
runs-on: macOS-14
strategy:
max-parallel: 2
fail-fast: false
matrix:
destination:
- "generic/platform=iOS Simulator"
- "generic/platform=macOS,variant=Mac Catalyst"
- "generic/platform=iOS"
steps:
- name: Select Xcode
run: |
xcodes select 15.2
- name: Check XCode Version
run: xcodebuild -version
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
set -o pipefail && xcodebuild build -project TridentCockpit.xcodeproj -scheme TridentCockpitiOS -destination "${{ matrix.destination }}" | xcpretty