From 835f2f75ba61f23c02f7d4ae40c2fb59410924f8 Mon Sep 17 00:00:00 2001 From: Erik Jaegervall Date: Mon, 4 Dec 2023 10:21:09 +0100 Subject: [PATCH] Include noexpand in mandatory builds Signed-off-by: Erik Jaegervall --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index beaae5b33..4a86b6156 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ all: clean mandatory_targets optional_targets # All mandatory targets that shall be built and pass on each pull request for # vehicle-signal-specification or vss-tools -mandatory_targets: clean json franca yaml binary csv graphql ddsidl id jsonschema overlays tests +mandatory_targets: clean json json-noexpand franca yaml binary csv graphql ddsidl id jsonschema overlays tests # Additional targets that shall be built by travis, but where it is not mandatory # that the builds shall pass. @@ -23,6 +23,9 @@ TOOLSDIR?=./vss-tools json: ${TOOLSDIR}/vspec2json.py -I ./spec --uuid -u ./spec/units.yaml ./spec/VehicleSignalSpecification.vspec vss_rel_$$(cat VERSION).json +json-noexpand: + ${TOOLSDIR}/vspec2json.py -I ./spec --uuid -u ./spec/units.yaml --no-expand ./spec/VehicleSignalSpecification.vspec vss_rel_$$(cat VERSION)_noexpand.json + jsonschema: ${TOOLSDIR}/vspec2jsonschema.py -I ./spec --uuid -u ./spec/units.yaml ./spec/VehicleSignalSpecification.vspec vss_rel_$$(cat VERSION).jsonschema