Skip to content

Commit

Permalink
Update CI to use Xcode 16
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Rebello <[email protected]>
  • Loading branch information
rebello95 committed Oct 6, 2024
1 parent dc6132a commit ca9f374
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build Eliza CocoaPods example
Expand All @@ -27,8 +27,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build Eliza Swift PM example
Expand All @@ -40,8 +40,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build Connect iOS library
Expand All @@ -51,8 +51,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build Connect macOS library
Expand All @@ -62,8 +62,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build Connect tvOS library
Expand All @@ -73,8 +73,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build Connect watchOS library
Expand All @@ -84,8 +84,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
Expand All @@ -102,8 +102,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- name: Install conformance runner
run: make installconformancerunner
- name: Run conformance tests
Expand All @@ -116,8 +116,8 @@ jobs:
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
run: sudo xcode-select --switch /Applications/Xcode_15.2.app
# 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
- name: Run unit tests
run: make testunit
run-swiftlint:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
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-14-arm64-Readme.md#xcode
run: sudo xcode-select --switch /Applications/Xcode_16.app
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
Expand Down

0 comments on commit ca9f374

Please sign in to comment.