Skip to content

Commit

Permalink
Move CI to newer images.
Browse files Browse the repository at this point in the history
This also gets Xcode 16 by default.
  • Loading branch information
thomasvl committed Nov 27, 2024
1 parent 6cb9981 commit c5108a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# time, so this covers the Core spec and tests.
pod-lib-lint-core:
name: CocoaPods lib lint Core
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
# resources without any real gain.
pod-lib-lint-subspecs:
name: CocoaPods lib lint SubSpecs
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ on:

jobs:
examples:
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/service_generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:

jobs:
swift:
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand All @@ -43,7 +43,7 @@ jobs:
swift build --configuration ${{ matrix.CONFIGURATION }}
xcodebuild:
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/swiftpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
jobs:
swift:
# The swift command line only support build/testing for macOS on.
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand All @@ -40,7 +40,7 @@ jobs:
xcodebuild:
# Job(s) to build for all the platforms to ensure that is working and the
# tests are passing.
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
matrix:
Expand All @@ -53,7 +53,7 @@ jobs:
set -eu
case "${{matrix.PLATFORM}}" in
ios)
DESTINATION="platform=iOS Simulator,name=iPhone 14,OS=latest"
DESTINATION="platform=iOS Simulator,name=iPhone 16,OS=latest"
;;
macos)
DESTINATION="platform=macOS"
Expand All @@ -65,7 +65,7 @@ jobs:
DESTINATION="platform=visionOS Simulator,name=Apple Vision Pro,OS=latest"
;;
watchos)
DESTINATION="platform=WatchOS Simulator,name=Apple Watch Series 7 (45mm),OS=latest"
DESTINATION="platform=WatchOS Simulator,name=Apple Watch Series 10 (46mm),OS=latest"
;;
esac
Expand Down

0 comments on commit c5108a0

Please sign in to comment.