Skip to content

Commit

Permalink
update CI to support Xcode 15.x
Browse files Browse the repository at this point in the history
  • Loading branch information
417-72KI committed Jul 1, 2024
1 parent 7e19e48 commit 5c4f5b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/matrix.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"xcode_version": [
"14.2"
"15.4",
"15.2"
]
}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
test:
name: Test
needs: generate-matrix
runs-on: macOS-12
runs-on: macOS-14
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
test_demo:
name: Test demo app
needs: generate-matrix
runs-on: macOS-12
runs-on: macOS-14
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
report:
name: Report
needs: [test, test_demo]
runs-on: macOS-12
runs-on: macOS-14
if: ${{ (success() || failure()) }}
steps:
- uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
release-assets:
name: Release Assets
runs-on: macOS-12
runs-on: macOS-14
env:
EXECUTABLE_NAME: buildconfigswift
EXECUTABLE_VERSION: ${{ github.ref_name }}
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
podspec:
name: Podspec
needs: release-assets
runs-on: macOS-12
runs-on: macOS-14
env:
POD_VERSION: ${{ github.ref_name }}
steps:
Expand Down

0 comments on commit 5c4f5b7

Please sign in to comment.