Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ios-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
os: [ macos-15 ]
xcode: [ "26.1" ]
os: [ macos-26 ]
runs-on: ${{ matrix.os }}

env:
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
set -o pipefail && \
NSUnbufferedIO=YES \
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16e" \
xcrun xcodebuild build -workspace . -scheme Vexil -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16e" \
| xcbeautify --renderer github-actions

build-ios:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: [ "16.3", "16.4", "26.0" ]
os: [ macos-15 ]
xcode: [ "26.1" ]
os: [ macos-26 ]
runs-on: ${{ matrix.os }}

env:
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
set -o pipefail && \
NSUnbufferedIO=YES \
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=macOS,name=My Mac" \
xcrun xcodebuild test -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=macOS,name=My Mac" \
| xcbeautify --renderer github-actions

build-macos:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tvos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
os: [ macos-15 ]
xcode: [ "26.1" ]
os: [ macos-26 ]
runs-on: ${{ matrix.os }}

env:
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
set -o pipefail && \
NSUnbufferedIO=YES \
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" \
xcrun xcodebuild build -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" \
| xcbeautify --renderer github-actions

build-tvos:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/visionos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
os: [ macos-15 ]
xcode: [ "26.1" ]
os: [ macos-26 ]
runs-on: ${{ matrix.os }}

env:
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
set -o pipefail && \
NSUnbufferedIO=YES \
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=visionOS Simulator,name=Apple Vision Pro,os=2.5" \
xcrun xcodebuild build -workspace . -scheme Vexil-Package -skipMacroValidation -destination "generic/platform=visionOS Simulator" \
| xcbeautify --renderer github-actions

build-visionos:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/watchos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
os: [ macos-15 ]
xcode: [ "26.1" ]
os: [ macos-26 ]
runs-on: ${{ matrix.os }}

env:
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
set -o pipefail && \
NSUnbufferedIO=YES \
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=watchOS Simulator,name=Apple Watch Series 10 (46mm)" \
xcrun xcodebuild build -workspace . -scheme Vexil -skipMacroValidation -destination "platform=watchOS Simulator,name=Apple Watch Ultra 3 (49mm)" \
| xcbeautify --renderer github-actions

build-watchos:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.build
/build
/.swiftpm
/Examples/.swiftpm
/Packages
/*.xcodeproj
xcuserdata/
Expand Down
Loading
Loading