Skip to content

Commit

Permalink
move visualizer integration gate to JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
zapster committed Aug 17, 2023
1 parent 219e1f6 commit 7f00755
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions visualizer/ci/ci.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@
Integration:: {
timelimit : "30:00",
targets: [ "gate" ],
downloads+: {
"VISUALIZER_JAVA_HOME": common.jdks_data["oraclejdk11"]
},
run: [
["cd", "./visualizer"],
["mx", "build" ],
["mx", "--java-home=$VISUALIZER_JAVA_HOME", "build" ],
["cd", "../compiler"],
["mx", "build" ],
["mx", "benchmark", "dacapo:fop", "--", "-Dgraal.Dump=:1", "-Dgraal.PrintGraph=File", "-Dgraal.DumpPath=../IGV_Dumps"],
Expand All @@ -33,6 +36,6 @@

builds: [
common.linux_amd64 + common.oraclejdk11 + self.Gate + { name: "gate-visualizer-linux-amd64-oraclejdk-11" },
common.linux_amd64 + common.oraclejdk17 + self.Integration + { name: "gate-visualizer-integration-linux-amd64-oraclejdk-17" },
common.linux_amd64 + common.labsjdkLatestCE + self.Integration + { name: "gate-visualizer-integration-linux-amd64-labsjdk-latest" },
]
}

0 comments on commit 7f00755

Please sign in to comment.