Update Xcode 16 and add Swift 6 toolchain support on macOS #303
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: iOS | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ios_test: | |
name: Execute tests on iOS | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-14] | |
xcode-version: [16.0] | |
release: [2021, 2024] | |
ios-version: ["18.0"] | |
include: | |
- ios-version: "18.0" | |
ios-simulator-name: "iPhone 16 Pro" | |
runs-on: ${{ matrix.os }} | |
env: | |
OPENSWIFTUI_WERROR: 1 | |
OPENGRAPH_ATTRIBUTEGRAPH: 1 | |
OPENSWIFTUI_COMPATIBILITY_TEST: 0 | |
OPENSWIFTUI_SWIFT_LOG: 0 | |
OPENSWIFTUI_TARGET_RELEASE: ${{ matrix.release }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ matrix.xcode-version }} | |
- name: Swift version | |
run: swift --version | |
- name: Build in release mode | |
run: | | |
xcodebuild build \ | |
-scheme OpenSwiftUI \ | |
-configuration Debug \ | |
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \ | |
-skipMacroValidation \ | |
-skipPackagePluginValidation | |
- name: Build and run tests in debug mode | |
run: | | |
xcodebuild test \ | |
-scheme OpenSwiftUI \ | |
-configuration Debug \ | |
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \ | |
-skipMacroValidation \ | |
-skipPackagePluginValidation |