2020-09-16 14:50:57 +00:00
|
|
|
.DEFAULT_GOAL := validate-schema
|
2022-12-22 16:35:09 +00:00
|
|
|
|
2020-09-16 14:50:57 +00:00
|
|
|
.PHONY: validate-schema
|
2022-12-22 16:35:09 +00:00
|
|
|
validate-schema: validate-schema-xml validate-schema-json
|
|
|
|
|
|
|
|
.PHONY: validate-schema-xml
|
|
|
|
validate-schema-xml:
|
2023-09-20 20:39:23 +00:00
|
|
|
go run ../../cmd/grype -c ../../test/grype-test-config.yaml ubuntu:latest -v -o cyclonedx-xml > bom.xml
|
2022-12-22 16:35:09 +00:00
|
|
|
xmllint --noout --schema ./cyclonedx.xsd bom.xml
|
|
|
|
|
|
|
|
.PHONY: validate-schema-json
|
|
|
|
validate-schema-json:
|
2023-09-20 20:39:23 +00:00
|
|
|
go run ../../cmd/grype -c ../../test/grype-test-config.yaml ubuntu:latest -v -o cyclonedx-json > bom.json
|
2022-12-22 16:35:09 +00:00
|
|
|
../../.tmp/yajsv -s cyclonedx.json bom.json
|