File tree Expand file tree Collapse file tree 5 files changed +33
-0
lines changed Expand file tree Collapse file tree 5 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,9 @@ build:rbe-25_2 --platforms=//bazel/platforms:erlang_linux_25_2_platform
59
59
build:rbe-25_3 --config=rbe
60
60
build:rbe-25_3 --platforms=//bazel/platforms:erlang_linux_25_3_platform
61
61
62
+ build:rbe-26 --config=rbe
63
+ build:rbe-26 --platforms=//bazel/platforms:erlang_linux_26_platform
64
+
62
65
# no-op config so that --config=local does not error
63
66
build:local --color=auto
64
67
Original file line number Diff line number Diff line change @@ -69,6 +69,12 @@ erlang_config.internal_erlang_from_github_release(
69
69
version = "25.3" ,
70
70
)
71
71
72
+ erlang_config .internal_erlang_from_github_release (
73
+ name = "26" ,
74
+ sha256 = "ce962175c4d90161a7247d8e2e4ae36f9d8cc0214c8f52dba8ba84a82afc096f" ,
75
+ version = "26.0-rc3" ,
76
+ )
77
+
72
78
erlang_config .internal_erlang_from_http_archive (
73
79
name = "git_master" ,
74
80
strip_prefix = "otp-master" ,
@@ -114,6 +120,8 @@ register_toolchains(
114
120
"@erlang_config//25_2:toolchain2" ,
115
121
"@erlang_config//25_3:toolchain" ,
116
122
"@erlang_config//25_3:toolchain2" ,
123
+ "@erlang_config//26:toolchain" ,
124
+ "@erlang_config//26:toolchain2" ,
117
125
"@erlang_config//git_master:toolchain" ,
118
126
"@erlang_config//git_master:toolchain2" ,
119
127
"@elixir_config//external:toolchain" ,
Original file line number Diff line number Diff line change @@ -92,6 +92,13 @@ http_file(
92
92
urls = ["https://github.com/erlang/otp/archive/OTP-25.3.tar.gz" ],
93
93
)
94
94
95
+ http_file (
96
+ name = "otp_src_26" ,
97
+ downloaded_file_path = "OTP-26.0-rc3.tar.gz" ,
98
+ sha256 = "f4fc2c5e1da56eb659003015ab80c42e50cef1129cca8c14457a522d1793498d" ,
99
+ urls = ["https://github.com/erlang/otp/archive/OTP-26.0-rc3.tar.gz" ],
100
+ )
101
+
95
102
http_archive (
96
103
name = "io_buildbuddy_buildbuddy_toolchain" ,
97
104
sha256 = "a2a5cccec251211e2221b1587af2ce43c36d32a42f5d881737db3b546a536510" ,
@@ -133,6 +140,11 @@ erlang_config(
133
140
sha256 = "85c447efc1746740df4089d75bc0e47b88d5161d7c44e9fc4c20fa33ea5d19d7" ,
134
141
version = "25.3" ,
135
142
),
143
+ internal_erlang_from_github_release (
144
+ name = "26" ,
145
+ sha256 = "ce962175c4d90161a7247d8e2e4ae36f9d8cc0214c8f52dba8ba84a82afc096f" ,
146
+ version = "26.0-rc3" ,
147
+ ),
136
148
internal_erlang_from_http_archive (
137
149
name = "git_master" ,
138
150
strip_prefix = "otp-master" ,
Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ platform(
56
56
parents = ["@rbe//config:platform" ],
57
57
)
58
58
59
+ platform (
60
+ name = "erlang_linux_26_platform" ,
61
+ constraint_values = [
62
+ "@erlang_config//:erlang_26" ,
63
+ "@elixir_config//:elixir_1_14" ,
64
+ ],
65
+ parents = ["@rbe//config:platform" ],
66
+ )
67
+
59
68
platform (
60
69
name = "erlang_linux_git_master_platform" ,
61
70
constraint_values = [
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ container_image(
125
125
"@erlang_config//:erlang_25_1" : ["@otp_src_25_1//file" ],
126
126
"@erlang_config//:erlang_25_2" : ["@otp_src_25_2//file" ],
127
127
"@erlang_config//:erlang_25_3" : ["@otp_src_25_3//file" ],
128
+ "@erlang_config//:erlang_26" : ["@otp_src_26//file" ],
128
129
}),
129
130
)
130
131
You can’t perform that action at this time.
0 commit comments