Skip to content

Commit 8840f89

Browse files
committed
Revert test change
1 parent 6b57ba9 commit 8840f89

File tree

1 file changed

+25
-35
lines changed

1 file changed

+25
-35
lines changed

BUILD.bazel

Lines changed: 25 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -134,45 +134,35 @@ selects.config_setting_group(
134134
],
135135
)
136136

137-
# Below are supported Xcode versions for Bazel.
138-
# More info: https://blog.bazel.build/2020/02/26/xcode-selection.html
139-
# and: https://www.smileykeith.com/2021/03/08/locking-xcode-in-bazel/
140137
xcode_version(
141-
name = "16_1_0_16B40",
142-
aliases = ["16B40"],
143-
default_ios_sdk_version = "18.1",
144-
default_macos_sdk_version = "15.1",
145-
default_tvos_sdk_version = "18.1",
146-
default_watchos_sdk_version = "11.1",
147-
version = "16.1.0.16B40",
148-
)
149-
150-
xcode_version(
151-
name = "16_0_0_16A242d",
152-
aliases = ["16A242d"],
153-
default_ios_sdk_version = "18.0",
154-
default_macos_sdk_version = "15.0",
155-
default_tvos_sdk_version = "18.0",
156-
default_watchos_sdk_version = "11.0",
157-
version = "16.0.0.16A242d",
158-
)
159-
160-
xcode_version(
161-
name = "15_4_0_15F31d",
162-
aliases = ["15F31d"],
163-
default_ios_sdk_version = "17.5",
164-
default_macos_sdk_version = "14.5",
165-
default_tvos_sdk_version = "17.5",
166-
default_watchos_sdk_version = "10.5",
167-
version = "15.4.0.15F31d",
138+
name = "version15_2_0_15C500b",
139+
aliases = [
140+
"15.2",
141+
"15.2.0",
142+
"15.2.0.15C500b",
143+
"15C500b",
144+
],
145+
default_ios_sdk_version = "17.2",
146+
default_macos_sdk_version = "14.2",
147+
default_tvos_sdk_version = "17.2",
148+
default_visionos_sdk_version = "1.0",
149+
default_watchos_sdk_version = "10.2",
150+
version = "15.2.0.15C500b",
168151
)
169152

170153
xcode_config(
171154
name = "host_xcodes",
172-
default = ":16_1_0_16B40",
155+
default = ":version15_2_0_15C500b",
156+
versions = [
157+
":version15_2_0_15C500b",
158+
],
159+
visibility = ["//visibility:public"],
160+
)
161+
162+
available_xcodes(
163+
name = "host_available_xcodes",
164+
default = ":version15_2_0_15C500b",
173165
versions = [
174-
":16_1_0_16B40",
175-
":16_0_0_16A242d",
176-
":15_4_0_15F31d",
166+
":version15_2_0_15C500b",
177167
],
178-
)
168+
)

0 commit comments

Comments
 (0)