@@ -228,27 +228,14 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
228228 conf.copydir(conf.jdk_home("." ), "${JDK_HOME}_fastdebug" )
229229 ] else []),
230230
231- publishArtifacts+: if !is_musl_build then [
232- {
233- name: "labsjdk" + conf.name,
234- dir: "." ,
235- patterns: ["jdk_home" , "jdk_home_fastdebug" ]
236- }
237- ] else [
238- # In contrast to the labsjdk-builder repo, the gate in this repo
239- # does not bundle the musl static library into the main JDK. That is
240- # why the musl static library builder does not publish anything.
241- # The musl-based builder in this repo exists solely to ensure
242- # the musl build does not regress.
243- ],
244231 },
245232
246233 # Downstream Graal branch to test against. If you change this value to anything but
247234 # "master", you must create an ol-jira issue to change it back to master once the
248235 # next JVMCI release has been made. Add the issue id as a comment here.
249236 # You might want to point this to the merge commit of a Graal PR, i.e., include
250237 # the "_gate" suffix.
251- local downstream_branch = "labsjdk/automation-4-11 -2024-9476_gate " ,
238+ local downstream_branch = "labsjdk/automation-4-18 -2024-2259_gate " ,
252239
253240 local clone_graal(defs) = {
254241 # Checkout the graal-enterprise repo to the "_gate" version of the
@@ -402,9 +389,6 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
402389 ],
403390
404391 DefineBuilds(defs):: [ self .Build(defs, conf, is_musl_build=false ) for conf in build_confs(defs) ] +
405- [ self .CompilerTests(defs, conf, fastdebug=true ) for conf in graal_confs(defs) ] +
406- [ self .CompilerTests(defs, conf, fastdebug=false ) for conf in graal_confs(defs) ] +
407- [ self .JavaScriptTests(defs, conf) for conf in graal_confs(defs) ] +
408392 [ self .Build(defs, conf, is_musl_build=true ) for conf in amd64_musl_confs(defs) ],
409393
410394 local defs = {
0 commit comments