Skip to content

Commit

Permalink
Updated to use macos-14 and xcode 15.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ArielDemarco committed Sep 25, 2024
1 parent 394bd68 commit 96a2c0f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-example-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
build-brandgame-app:
name: Build BrandGame App
timeout-minutes: 20
runs-on: macos-13
runs-on: macos-14
strategy:
fail-fast: false
matrix:
xcode_version: ["15.1"]
xcode_version: ["15.4"]
steps:
- name: Select Xcode
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
run: |
sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app
xcodebuild -version
Expand Down Expand Up @@ -46,14 +46,14 @@ jobs:
build-demoobjc-app:
name: Build Objc Demo App
timeout-minutes: 20
runs-on: macos-13
runs-on: macos-14
strategy:
fail-fast: false
matrix:
xcode_version: ["15.1"]
xcode_version: ["15.4"]
steps:
- name: Select Xcode
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
run: |
sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app
xcodebuild -version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
build:
name: Build ${{ matrix.platform_args }} - Xcode ${{ matrix.xcode_version }}
timeout-minutes: 30
runs-on: macos-13
runs-on: macos-14
strategy:
fail-fast: false
matrix:
platform_args: ["iOS macOS tvOS"] # using a single string will run platforms in parallel
xcode_version: ["15.1"]
xcode_version: ["15.4"]
steps:
- name: Select Xcode
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
run: |
sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app
xcodebuild -version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
build_release_candidate:
name: Bump Version and Build Release
runs-on: macos-13
runs-on: macos-14
timeout-minutes: 60
needs:
- extractor
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
fi
- name: Select Xcode 15
run: sudo xcode-select -switch /Applications/Xcode_15.1.app
run: sudo xcode-select -switch /Applications/Xcode_15.4.app

- name: Install Mise
run: |
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
push_podspec:
name: Push Podspec to Cocoapods
runs-on: macos-13
runs-on: macos-14
timeout-minutes: 10
needs:
- extractor
Expand Down

0 comments on commit 96a2c0f

Please sign in to comment.