Skip to content

Commit

Permalink
ci: Update to Xcode 15.4 (#67)
Browse files Browse the repository at this point in the history
* ci: Update to Xcode 15.4

* Update release.yml

* Update release.yml

* Update .codecov.yml
  • Loading branch information
cbaker6 authored May 17, 2024
1 parent 0e3d6c7 commit 3c8cc44
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ coverage:
changes: false
project:
default:
target: 38
target: 36
comment:
require_changes: true
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ 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:
spm-test:
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: Lint
run: set -o pipefail && env NSUnbufferedIO=YES swiftlint --strict
- name: Build and Test
Expand Down Expand Up @@ -69,11 +69,9 @@ jobs:

docs:
timeout-minutes: 20
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: Generate Docs
run: set -o pipefail && env NSUnbufferedIO=YES Scripts/generate-documentation
env:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ on:
types: [published]

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

jobs:
docs:
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: Build and Deploy Docs
run: set -o pipefail && env NSUnbufferedIO=YES Scripts/update-gh-pages-documentation-site
env:
Expand Down

0 comments on commit 3c8cc44

Please sign in to comment.