File tree Expand file tree Collapse file tree 7 files changed +31
-3
lines changed Expand file tree Collapse file tree 7 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,14 @@ build:rbe-25_3 --config=rbe
68
68
build:rbe-25_3 --platforms=//bazel/platforms:erlang_linux_25_3_platform
69
69
70
70
build:rbe-26 --config=rbe
71
- build:rbe-26 --platforms=//bazel/platforms:erlang_linux_26_1_platform
71
+ build:rbe-26 --platforms=//bazel/platforms:erlang_linux_26_2_platform
72
72
73
73
build:rbe-26_1 --config=rbe
74
74
build:rbe-26_1 --platforms=//bazel/platforms:erlang_linux_26_1_platform
75
75
76
+ build:rbe-26_2 --config=rbe
77
+ build:rbe-26_2 --platforms=//bazel/platforms:erlang_linux_26_2_platform
78
+
76
79
# no-op config so that --config=local does not error
77
80
build:local --color=auto
78
81
Original file line number Diff line number Diff line change 36
36
- image_tag_suffix : otp-min-bazel
37
37
otp_version_id : 26_1
38
38
- image_tag_suffix : otp-max-bazel
39
- otp_version_id : 26_1
39
+ otp_version_id : 26_2
40
40
steps :
41
41
- name : Checkout
42
42
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 17
17
matrix :
18
18
include :
19
19
- image_tag_suffix : otp-max-bazel
20
- otp_version_id : 26_1
20
+ otp_version_id : 26_2
21
21
timeout-minutes : 45
22
22
steps :
23
23
- name : CHECKOUT REPOSITORY
Original file line number Diff line number Diff line change @@ -100,6 +100,12 @@ erlang_config.internal_erlang_from_github_release(
100
100
version = "26.1.2" ,
101
101
)
102
102
103
+ erlang_config .internal_erlang_from_github_release (
104
+ name = "26_2" ,
105
+ sha256 = "80d66bafbae409481a4e1badcb4a6275b07a8e9af82980c08d7a8add483232a9" ,
106
+ version = "26.2.1" ,
107
+ )
108
+
103
109
erlang_config .internal_erlang_from_http_archive (
104
110
name = "git_master" ,
105
111
strip_prefix = "otp-master" ,
@@ -153,6 +159,8 @@ register_toolchains(
153
159
"@erlang_config//25_3:toolchain_major_minor" ,
154
160
"@erlang_config//26_1:toolchain_major" ,
155
161
"@erlang_config//26_1:toolchain_major_minor" ,
162
+ "@erlang_config//26_2:toolchain_major" ,
163
+ "@erlang_config//26_2:toolchain_major_minor" ,
156
164
"@erlang_config//git_master:toolchain_major" ,
157
165
"@erlang_config//git_master:toolchain_major_minor" ,
158
166
"@elixir_config//external:toolchain" ,
Original file line number Diff line number Diff line change @@ -112,6 +112,13 @@ http_file(
112
112
urls = ["https://github.com/erlang/otp/archive/OTP-26.1.2.tar.gz" ],
113
113
)
114
114
115
+ http_file (
116
+ name = "otp_src_26_2" ,
117
+ downloaded_file_path = "OTP-26.2.1.tar.gz" ,
118
+ sha256 = "d99eab3af908b41dd4d7df38f0b02a447579326dd6604f641bbe9f2789b5656b" ,
119
+ urls = ["https://github.com/erlang/otp/archive/OTP-26.2.1.tar.gz" ],
120
+ )
121
+
115
122
new_git_repository (
116
123
name = "bats" ,
117
124
build_file = "@//:BUILD.bats" ,
Original file line number Diff line number Diff line change @@ -65,6 +65,15 @@ platform(
65
65
parents = ["@rbe//config:platform" ],
66
66
)
67
67
68
+ platform (
69
+ name = "erlang_linux_26_2_platform" ,
70
+ constraint_values = [
71
+ "@erlang_config//:erlang_26_2" ,
72
+ "@elixir_config//:elixir_1_15" ,
73
+ ],
74
+ parents = ["@rbe//config:platform" ],
75
+ )
76
+
68
77
platform (
69
78
name = "erlang_linux_git_master_platform" ,
70
79
constraint_values = [
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ container_image(
142
142
"@erlang_config//:erlang_25_2" : ["@otp_src_25_2//file" ],
143
143
"@erlang_config//:erlang_25_3" : ["@otp_src_25_3//file" ],
144
144
"@erlang_config//:erlang_26_1" : ["@otp_src_26_1//file" ],
145
+ "@erlang_config//:erlang_26_2" : ["@otp_src_26_2//file" ],
145
146
}),
146
147
)
147
148
You can’t perform that action at this time.
0 commit comments