From c26a8854609b2059df1f753c6262c9b1c9382d95 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 11:38:46 -0400 Subject: [PATCH 1/4] ci: Update to Xcode 15.4 --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7f84142..782201d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ 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 }} @@ -16,11 +16,11 @@ concurrency: 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 @@ -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: From c097cad36b4f49dfb8409ee875cee2276d870744 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 11:40:42 -0400 Subject: [PATCH 2/4] Update release.yml --- .github/workflows/release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bffea005..7b049da5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 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: From 4434acd64f59fd6e241faceb18efb6c2e6a32917 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 11:40:52 -0400 Subject: [PATCH 3/4] Update release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b049da5..00a02ed0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ env: jobs: docs: - runs-on: macos-13 + runs-on: macos-14 steps: - uses: actions/checkout@v4 - name: Build and Deploy Docs From 7dd4cfb9f380fac4e099483f6c56063999993f0f Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 11:50:11 -0400 Subject: [PATCH 4/4] Update .codecov.yml --- .codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codecov.yml b/.codecov.yml index 70a7098b..8940bd84 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -8,6 +8,6 @@ coverage: changes: false project: default: - target: 38 + target: 36 comment: require_changes: true