Skip to content

Commit 22e9fc0

Browse files
committed
dont automatically add the _gate suffix to the downstream branch
1 parent 0fa2228 commit 22e9fc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ci.jsonnet

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,15 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
246246
# Downstream Graal branch to test against. If you change this value to anything but
247247
# "master", you must create an ol-jira issue to change it back to master once the
248248
# next JVMCI release has been made. Add the issue id as a comment here.
249-
local downstream_branch = "labsjdk/automation-1-12-2024-940",
249+
# You might want to point this to the merge commit of a Graal PR, i.e., include
250+
# the "_gate" suffix.
251+
local downstream_branch = "labsjdk/automation-1-12-2024-940_gate_0",
250252

251253
local clone_graal(defs) = {
252254
# Checkout the graal-enterprise repo to the "_gate" version of the
253255
# named downstream branch. This ensures the graal-enterprise and
254256
# graal repos will be in sync.
255-
local branch = if downstream_branch == "master" then "master" else downstream_branch + "_gate",
257+
local branch = downstream_branch,
256258

257259
run+: [
258260
["git", "clone", defs.graal_enterprise_url],

0 commit comments

Comments
 (0)