Skip to content

Commit

Permalink
Replace Xcode 16.0 beta 6 with 16.0 RC
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Sep 18, 2024
1 parent 5dc1f4b commit 410927c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-osx

osx-16_beta_6:
osx-16_Release_Candidate:
runs-on: macos-14
name: Test osx on Xcode 16_beta_6
name: Test osx on Xcode 16_Release_Candidate
env:
DEVELOPER_DIR: '/Applications/Xcode_16_beta_6.app/Contents/Developer'
DEVELOPER_DIR: '/Applications/Xcode_16_Release_Candidate.app/Contents/Developer'
steps:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-osx
Expand Down Expand Up @@ -108,11 +108,11 @@ jobs:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-swiftpm-debug

swiftpm-debug-16_beta_6:
swiftpm-debug-16_Release_Candidate:
runs-on: macos-14
name: Test swiftpm-debug on Xcode 16_beta_6
name: Test swiftpm-debug on Xcode 16_Release_Candidate
env:
DEVELOPER_DIR: '/Applications/Xcode_16_beta_6.app/Contents/Developer'
DEVELOPER_DIR: '/Applications/Xcode_16_Release_Candidate.app/Contents/Developer'
steps:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-swiftpm-debug
Expand Down Expand Up @@ -252,11 +252,11 @@ jobs:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-osx-swift

osx-swift-16_beta_6:
osx-swift-16_Release_Candidate:
runs-on: macos-14
name: Test osx-swift on Xcode 16_beta_6
name: Test osx-swift on Xcode 16_Release_Candidate
env:
DEVELOPER_DIR: '/Applications/Xcode_16_beta_6.app/Contents/Developer'
DEVELOPER_DIR: '/Applications/Xcode_16_Release_Candidate.app/Contents/Developer'
steps:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-osx-swift
Expand Down Expand Up @@ -396,11 +396,11 @@ jobs:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-cocoapods-osx

cocoapods-osx-16_beta_6:
cocoapods-osx-16_Release_Candidate:
runs-on: macos-14
name: Test cocoapods-osx on Xcode 16_beta_6
name: Test cocoapods-osx on Xcode 16_Release_Candidate
env:
DEVELOPER_DIR: '/Applications/Xcode_16_beta_6.app/Contents/Developer'
DEVELOPER_DIR: '/Applications/Xcode_16_Release_Candidate.app/Contents/Developer'
steps:
- uses: actions/checkout@v4
- run: sh -x build.sh verify-cocoapods-osx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "master"
- "release/**"
env:
XCODE_VERSION: "['15.3', '15.4', '16_beta_6', '16.1_beta']"
XCODE_VERSION: "['15.3', '15.4', '16_Release_Candidate', '16.1_beta']"
PLATFORM: "['ios', 'osx', 'watchos', 'tvos', 'catalyst', 'visionos']"
DOC_VERSION: '15.4'
RELEASE_VERSION: '15.4'
Expand Down
2 changes: 1 addition & 1 deletion scripts/pr-ci-matrix.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
XCODE_VERSIONS = %w(15.3 15.4 16_beta_6 16.1_beta)
XCODE_VERSIONS = %w(15.3 15.4 16_Release_Candidate 16.1_beta)
DOC_VERSION = '15.4'

all = ->(v) { true }
Expand Down

0 comments on commit 410927c

Please sign in to comment.