Skip to content

Commit f7be825

Browse files
authored
[CI] Run all macos-15 jobs with Xcode 16.4 (#1748)
1 parent 5823b7b commit f7be825

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

.github/workflows/abtesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: macOS-15
6262
strategy:
6363
matrix:
64-
xcode: ["16.1"]
64+
xcode: ["16.4"]
6565
os: [iOS, tvOS, macOS, watchOS, catalyst]
6666
include:
6767
- os: iOS

.github/workflows/analytics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# TODO: Re-enable when ODM2 catalyst support is investigated
3636
# os: [iOS, catalyst, tvOS, macOS]
3737
os: [iOS, tvOS, macOS]
38-
xcode: ["16.1"]
38+
xcode: ["16.4"]
3939
include:
4040
- os: iOS
4141
device: iPhone 16

.github/workflows/crashlytics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: macOS-15
5858
strategy:
5959
matrix:
60-
xcode: ["16.1"]
60+
xcode: ["16.4"]
6161
os: [iOS, tvOS, macOS, watchOS]
6262
include:
6363
- os: iOS

.github/workflows/database.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: macOS-15
5757
strategy:
5858
matrix:
59-
xcode: ["16.1"]
59+
xcode: ["16.4"]
6060
os: [iOS, tvOS, macOS]
6161
include:
6262
- os: iOS

.github/workflows/firebaseai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: macOS-15
2424
strategy:
2525
matrix:
26-
xcode: ["16.3"]
26+
xcode: ["16.4"]
2727
os: [iOS]
2828
include:
2929
- os: iOS

.github/workflows/functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: macOS-15
3333
strategy:
3434
matrix:
35-
xcode: ["16.1"]
35+
xcode: ["16.4"]
3636
os: [iOS, tvOS, macOS]
3737
include:
3838
- os: iOS

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: macOS-15
6161
strategy:
6262
matrix:
63-
xcode: ["16.1"]
63+
xcode: ["16.4"]
6464
os: [iOS, tvOS]
6565
include:
6666
- os: iOS

.github/workflows/storage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: macOS-15
5959
strategy:
6060
matrix:
61-
xcode: ["16.1"]
61+
xcode: ["16.4"]
6262
os: [iOS, tvOS, macOS]
6363
include:
6464
- os: iOS

scripts/build-for-testing.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function xcb() {
9090
}
9191

9292
# Run xcodebuild
93-
sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
93+
sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
9494
xcb "${flags[@]}"
9595
echo "$message"
9696

scripts/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
set -euo pipefail
2222

23-
if [ -d "/Applications/Xcode_16.2.app" ]; then
24-
xcode_version="16.2"
23+
if [ -d "/Applications/Xcode_16.4.app" ]; then
24+
xcode_version="16.4"
2525
iphone_version="16"
2626
else
2727
xcode_version="15.3"

0 commit comments

Comments
 (0)