mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
8 lines
301 B
Makefile
8 lines
301 B
Makefile
.DEFAULT_GOAL := validate-schema
|
|
.PHONY: validate-schema
|
|
validate-schema:
|
|
go run ../../main.go ubuntu:latest -vv -o cyclonedx > bom.xml
|
|
xmllint --noout --schema ./cyclonedx.xsd bom.xml
|
|
go run ../../main.go ubuntu:latest -vv -o cyclonedx-json > bom.json
|
|
../../.tmp/yajsv -s cyclonedx.json bom.json
|