mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
7 lines
319 B
Makefile
7 lines
319 B
Makefile
.DEFAULT_GOAL := validate-schema
|
|
.PHONY: validate-schema
|
|
validate-schema:
|
|
go run ../../cmd/syft/main.go ubuntu:latest -vv -o cyclonedx > bom.xml
|
|
xmllint --noout --schema ./cyclonedx.xsd bom.xml
|
|
go run ../../cmd/syft/main.go ubuntu:latest -vv -o cyclonedx-json > bom.json
|
|
../../.tmp/yajsv -s cyclonedx.json bom.json
|