Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw committed Feb 24, 2025
1 parent 550d7c0 commit 3c255fd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ concurrency:

jobs:
library:
runs-on: macos-14
runs-on: macos-15
strategy:
matrix:
xcode:
- '15.4'
- '16.2'
variation:
- ios
- macos
Expand All @@ -36,13 +36,27 @@ jobs:
- name: Run tests
run: make test-${{ matrix.variation }}

library-swift-compatibility:
runs-on: macos-14
strategy:
matrix:
xcode:
- '15.4'
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Skip macro validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Run tests
run: make test-ios

library-evolution:
name: Library Evolution
runs-on: macos-latest
runs-on: macos-15
strategy:
matrix:
xcode:
- '15.4'
- '16.2'
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ build-for-library-evolution:
-Xswiftc $(OTHER_SWIFT_FLAGS)
xcodebuild build \
-workspace SwiftNavigation.xcworkspace \
-destination platform="platform=iOS,name=generic/iOS" \
-destination platform="$(PLATFORM_IOS)" \
-scheme SwiftNavigation \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES \
OTHER_SWIFT_FLAGS=$(OTHER_SWIFT_FLAGS)
Expand Down

0 comments on commit 3c255fd

Please sign in to comment.