Skip to content

Commit 01cfe78

Browse files
committed
Move validation of JSON build info out of style gate
1 parent 49c52cc commit 01cfe78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

substratevm/ci/ci.jsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@
108108

109109
// START MAIN BUILD DEFINITION
110110
local task_dict = {
111-
"style-fullbuild": mxgate("fullbuild,style,nativeimagehelp") + eclipse + jdt + maven + jsonschema + mx_build_exploded + gdb("10.2") + platform_spec(no_jobs) + platform_spec({
111+
"style-fullbuild": mxgate("fullbuild,style,nativeimagehelp") + eclipse + jdt + maven + mx_build_exploded + gdb("10.2") + platform_spec(no_jobs) + platform_spec({
112112
"linux:amd64:jdk20": gate + t("30:00"),
113113
}),
114-
"basics": mxgate("build,helloworld,native_unittests,truffle_unittests,debuginfotest,hellomodule") + maven + platform_spec(no_jobs) + platform_spec({
114+
"basics": mxgate("build,helloworld,native_unittests,truffle_unittests,debuginfotest,hellomodule") + maven + jsonschema + platform_spec(no_jobs) + platform_spec({
115115
"linux:amd64:jdk19": gate + gdb("10.2") + t("55:00"),
116116
"windows:amd64:jdk17": gate + t("1:30:00"),
117117
}) + variants({

substratevm/mx.substratevm/mx_substratevm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def help_stdout_check(output):
415415
if t:
416416
hellomodule(args.extra_image_builder_arguments)
417417

418-
with Task('Validate JSON build info', tasks, tags=[mx_gate.Tags.style]) as t:
418+
with Task('Validate JSON build info', tasks, tags=[GraalTags.helloworld]) as t:
419419
if t:
420420
import json
421421
try:

0 commit comments

Comments
 (0)