Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jobs:
# Listing all artifacts that shall be managed as release artifacts
path: |
vss.csv
vss.fidl

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to this PR, but check if release artifact list is up to date as we have added/refactored some exporters lately

vss.graphql
vss.idl
vss.json
Expand Down
2 changes: 1 addition & 1 deletion BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ standard catalog documentation.

Before writing your own parser it could be an idea to check if a suitable parser already has been created as part of
[VSS-Tools](https://github.com/COVESA/vss-tools). This repository use some of the tools in VSS-Tools during Continuous
Integration, and we also provide generated artifacts (CSV, Franca IDL, Graphql, DDS IDL, JSON, Yaml) for each
Integration, and we also provide generated artifacts (CSV, Graphql, DDS IDL, JSON, Yaml) for each
[release](https://github.com/COVESA/vehicle_signal_specification/releases).
The sections below provide some guidance on how to use VSS-Tools to convert the VSS standard catalog.
Before creating a Pull Requst towards this repository it is recommended that you verify that your modified catalog
Expand Down
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Makefile to generate specifications
#

.PHONY: clean all mandatory_targets json franca yaml csv ddsidl tests binary protobuf ttl s2dm ocf c overlays id jsonschema
.PHONY: clean all mandatory_targets json yaml csv ddsidl tests binary protobuf ttl s2dm ocf c overlays id jsonschema

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 apigear binary csv datatypes ddsidl franca go id json json-noexpand jsonschema overlays plantuml samm s2dm yaml
mandatory_targets: clean apigear binary csv datatypes ddsidl go id json json-noexpand jsonschema overlays plantuml samm s2dm yaml

# Additional targets that shall be built by travis, but where it is not mandatory
# that the builds shall pass.
Expand Down Expand Up @@ -43,9 +43,6 @@ csv:
ddsidl:
vspec export ddsidl ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.idl

franca:
vspec export franca --franca-vss-version $(VSS_VERSION) ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.fidl

go:
vspec export go ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.go

Expand Down
Loading