-
Notifications
You must be signed in to change notification settings - Fork 16.1k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
71 lines (66 loc) · 1.82 KB
/
BUILD.bazel
File metadata and controls
71 lines (66 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# This information is extracted from the MacOS runner specs located at:
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
#
# When updating, also ensure the "xcode_destination" entries in
# `.github/workflows/test_objectivec.yml` are supported for the given versions
# of Xcode.
xcode_version(
name = "version16_0",
version = "16.0",
aliases = ["160", "16.0"],
default_ios_sdk_version = "17.2",
default_tvos_sdk_version = "17.2",
default_macos_sdk_version = "14.2",
default_watchos_sdk_version = "10.2",
)
xcode_version(
name = "version15_2_15C500b",
aliases = [
"15C500b",
"15.2",
],
default_ios_sdk_version = "17.2",
default_macos_sdk_version = "14.2",
default_tvos_sdk_version = "17.2",
default_watchos_sdk_version = "10.2",
version = "15.2.0.15C500b",
)
xcode_version(
name = "version14_2_14C18",
aliases = [
"14C18",
"14.2",
],
default_ios_sdk_version = "16.2",
default_macos_sdk_version = "13.1",
default_tvos_sdk_version = "16.1",
default_watchos_sdk_version = "9.1",
version = "14.2.0.14C18",
)
xcode_version(
name = "version14_1_0_14B47b",
aliases = [
"14B47b",
"14.1",
],
default_ios_sdk_version = "16.1",
default_macos_sdk_version = "13.0",
default_tvos_sdk_version = "16.1",
default_watchos_sdk_version = "9.1",
version = "14.1.0.14B47b",
)
xcode_config(
name = "host_xcodes",
default = ":version14_2_14C18",
versions = [
":version15_2_15C500b",
":version14_2_14C18",
":version14_1_0_14B47b",
],
)
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md
xcode_config(
name = "host_xcode_16_macos_15",
versions = [":version16_0"],
default = ":version16_0",
)