Skip to content

Commit

Permalink
ci: Update to Xcode 15.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 authored May 17, 2024
1 parent c78bcb3 commit 6920898
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,21 @@ on:
branches: [ main ]

env:
CI_XCODE: '/Applications/Xcode_15.0.app/Contents/Developer'
CI_XCODE: '/Applications/Xcode_15.4.app/Contents/Developer'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
xcode-test-ios:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use multiple cores
run: defaults write com.apple.dt.XCBuild EnableSwiftBuildSystemIntegration 1
- name: Install SwiftLint
run: brew install swiftlint
- name: Build
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -testPlan ParseCareKit -scheme ParseCareKit -destination platform\=iOS\ Simulator,name\=iPhone\ 14\ Pro\ Max -derivedDataPath DerivedData clean test | xcpretty
env:
Expand All @@ -42,7 +44,7 @@ jobs:
DEVELOPER_DIR: ${{ env.CI_XCODE }}

xcode-test-macos:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use multiple cores
Expand Down Expand Up @@ -70,7 +72,7 @@ jobs:
DEVELOPER_DIR: ${{ env.CI_XCODE }}

xcode-build-watchos:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use multiple cores
Expand All @@ -82,7 +84,7 @@ jobs:

spm-test:
timeout-minutes: 15
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use multiple cores
Expand All @@ -93,7 +95,7 @@ jobs:
DEVELOPER_DIR: ${{ env.CI_XCODE }}

docs:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use multiple cores
Expand Down

0 comments on commit 6920898

Please sign in to comment.