-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Swift 6 when available & upgrade to Xcode 16.2 #331
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,12 @@ permissions: | |
contents: read | ||
jobs: | ||
build-eliza-cocoapods-example: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install xcbeautify | ||
run: brew install xcbeautify | ||
- name: Build Eliza CocoaPods example | ||
|
@@ -23,69 +23,69 @@ jobs: | |
pod install | ||
set -o pipefail && xcodebuild -workspace ElizaCocoaPodsApp.xcworkspace -scheme ElizaCocoaPodsApp build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify | ||
build-eliza-swiftpm-example: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install xcbeautify | ||
run: brew install xcbeautify | ||
- name: Build Eliza Swift PM example | ||
run: | | ||
cd Examples/ElizaSwiftPackageApp | ||
set -o pipefail && xcodebuild -scheme ElizaSwiftPackageApp build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify | ||
build-library-ios: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install xcbeautify | ||
run: brew install xcbeautify | ||
- name: Build Connect iOS library | ||
run: set -o pipefail && xcodebuild -scheme Connect-Package -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.0' | xcbeautify | ||
build-library-macos: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install xcbeautify | ||
run: brew install xcbeautify | ||
- name: Build Connect macOS library | ||
run: set -o pipefail && xcodebuild -scheme Connect-Package -destination 'platform=macOS' | xcbeautify | ||
build-library-tvos: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install xcbeautify | ||
run: brew install xcbeautify | ||
- name: Build Connect tvOS library | ||
run: set -o pipefail && xcodebuild -scheme Connect-Package -destination 'platform=tvOS Simulator,name=Apple TV,OS=18.0' | xcbeautify | ||
build-library-watchos: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install xcbeautify | ||
run: brew install xcbeautify | ||
- name: Build Connect watchOS library | ||
run: set -o pipefail && xcodebuild -scheme Connect-Package -destination 'platform=watchOS Simulator,name=Apple Watch Series 10 (42mm),OS=11.0' | xcbeautify | ||
build-plugin-and-generate: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md | ||
run: sudo xcode-select --switch /Applications/Xcode_15.2.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- uses: bufbuild/[email protected] | ||
with: | ||
github_token: ${{ github.token }} | ||
|
@@ -98,26 +98,26 @@ jobs: | |
git update-index --refresh --add --remove | ||
git diff-index --quiet HEAD -- | ||
run-conformance-tests: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Install conformance runner | ||
run: make installconformancerunner | ||
- name: Run conformance tests | ||
run: make testconformance | ||
run-unit-tests: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21.x | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Run unit tests | ||
run: make testunit | ||
run-swiftlint: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,12 @@ permissions: | |
contents: write | ||
jobs: | ||
release: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- uses: bufbuild/[email protected] | ||
with: | ||
github_token: ${{ github.token }} | ||
|
@@ -37,12 +37,12 @@ jobs: | |
files: | | ||
./.tmp/bin/artifacts/* | ||
publish-podspecs: | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Select Xcode version | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.app | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode | ||
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | ||
- name: Publish podspecs to CocoaPods | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | ||
|
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think what we may want to do instead is keep the
swift-tools-version
set at 5.6 and then specifyswiftLanguageVersions: [.version("6"), .v5]
(instead ofswiftLanguageModes
which is new and Swift 6/Xcode 16 only).What this will do is allow us to compile with Swift 6 when using the package in Xcode 16, but it will continue to let the package compile with Xcode 15.4 as well. (docs here). I think that's what we want, because if we increase the required
swift-tools-version
, I believe that would technically be considered a breaking change, since any dependent packages that are also set to 5.6 would need to increase their tools version to at least the value specified by Connect-Swift.I could also be wrong here, but just wanted to share that since I've also been going through this exercise of updating some of my packages to compile with Swift 6 while still wanting them to be usable on Xcode 15.4.
Thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this writeup @eseay.
I think you're correct based on the docs you linked, particularly the section on:
I pushed an update with your recommendation 🙏🏽