mirror of https://github.com/oracle/graal.git
reduce galahad gate to bare minimum
This commit is contained in:
parent
5547858847
commit
98bef60edf
|
@ -396,7 +396,7 @@
|
|||
],
|
||||
|
||||
# Builds run on all platforms (platform = JDK + OS + ARCH)
|
||||
local all_platforms_builds = [self.make_build(jdk, os_arch, task).build
|
||||
local all_platforms_builds = [self.make_build(jdk, os_arch, task).build + galahad.exclude
|
||||
for task in [
|
||||
"test",
|
||||
"truffle_xcomp",
|
||||
|
@ -417,7 +417,7 @@
|
|||
|
||||
# Coverage builds run on all platforms (platform = JDK + OS + ARCH)
|
||||
# that support JaCoCo (GR-46676)
|
||||
local all_coverage_builds = [self.make_build(jdk, os_arch, task).build
|
||||
local all_coverage_builds = [self.make_build(jdk, os_arch, task).build + galahad.exclude
|
||||
for task in [
|
||||
"coverage",
|
||||
"coverage_ctw",
|
||||
|
@ -433,7 +433,7 @@
|
|||
|
||||
# Test ZGC on support platforms. Windows requires version 1083 or later which will
|
||||
# probably require adding some capabilities.
|
||||
local all_zgc_builds = [self.make_build(jdk, os_arch, task).build
|
||||
local all_zgc_builds = [self.make_build(jdk, os_arch, task).build + galahad.exclude
|
||||
for jdk in [
|
||||
self.jdk_latest
|
||||
]
|
||||
|
@ -453,7 +453,7 @@
|
|||
],
|
||||
|
||||
# Run unittests with SerialGC.
|
||||
local all_serialgc_builds = [self.make_build(self.jdk_latest, os_arch, task).build
|
||||
local all_serialgc_builds = [self.make_build(self.jdk_latest, os_arch, task).build + galahad.exclude
|
||||
for os_arch in [
|
||||
"linux-amd64",
|
||||
"linux-aarch64",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"README": "This file contains definitions that are useful for the jsonnet CI files of the graal and graal-enterprise repositories.",
|
||||
"ci": {
|
||||
"overlay": "d434751247c43b1ccb1c4e07dfc9f8731fbb93e4"
|
||||
"overlay": "0fb9c2f58b07cc9b370baf3d6f5230aadb0aaf9a"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
local utils = (import '../../ci/ci_common/common-utils.libsonnet'),
|
||||
local common = import '../../ci/ci_common/common.jsonnet',
|
||||
local galahad = import "../../ci/ci_common/galahad-common.libsonnet",
|
||||
|
||||
local regex_common = {
|
||||
setup+: [
|
||||
|
@ -15,8 +16,8 @@
|
|||
targets: ["gate"],
|
||||
},
|
||||
|
||||
local regex_gate_lite = regex_common + {
|
||||
name: 'gate-regex-mac-lite-' + self.jdk_name,
|
||||
local regex_gate_lite = regex_common + galahad.exclude {
|
||||
name: 'weekly-regex-mac-lite-' + self.jdk_name,
|
||||
run: [
|
||||
["mx", "build"],
|
||||
["mx", "unittest", "--verbose", "com.oracle.truffle.regex"],
|
||||
|
|
|
@ -618,7 +618,7 @@ local devkits = graal_common.devkits;
|
|||
#
|
||||
# Gates
|
||||
#
|
||||
vm.vm_java_21 + graal_common.deps.eclipse + graal_common.deps.jdt + self.vm_base('linux', 'amd64', 'gate') + galahad.include + {
|
||||
vm.vm_java_21 + graal_common.deps.eclipse + graal_common.deps.jdt + self.vm_base('linux', 'amd64', 'gate') + galahad.exclude + {
|
||||
run: [
|
||||
['mx', 'gate', '-B=--force-deprecation-as-warning', '--tags', 'style,fullbuild'],
|
||||
],
|
||||
|
|
|
@ -5,6 +5,7 @@ local devkits = graal_common.devkits;
|
|||
local c = import 'common.jsonnet';
|
||||
local g = vm.compiler_gate;
|
||||
local utils = import '../../../ci/ci_common/common-utils.libsonnet';
|
||||
local galahad = import '../../../ci/ci_common/galahad-common.libsonnet';
|
||||
|
||||
{
|
||||
local underscore(s) = std.strReplace(s, "-", "_"),
|
||||
|
@ -79,7 +80,7 @@ local utils = import '../../../ci/ci_common/common-utils.libsonnet';
|
|||
# See definition of `gates` local variable in ../../compiler/ci_common/gate.jsonnet
|
||||
local gate_jobs = {
|
||||
"gate-vm-libgraal_compiler-labsjdk-latest-linux-amd64": {},
|
||||
"gate-vm-libgraal_truffle-labsjdk-latest-linux-amd64": {},
|
||||
"gate-vm-libgraal_truffle-labsjdk-latest-linux-amd64": {} + galahad.exclude,
|
||||
"gate-vm-libgraal_compiler_zgc-labsjdk-latest-linux-amd64": {},
|
||||
"gate-vm-libgraal_compiler_quickbuild-labsjdk-latest-linux-amd64": {},
|
||||
|
||||
|
|
Loading…
Reference in New Issue