mirror of
https://github.com/anchore/syft.git
synced 2026-03-30 21:53:27 +02:00
* internalize majority of cmd package and migrate integration tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * add internal api encoder Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * create internal representation of all formats Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * export capability to get default encoders Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * restore test fixtures Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
7 lines
323 B
Makefile
7 lines
323 B
Makefile
# change these if you want CI to not use previous stored cache
|
|
INTEGRATION_CACHE_BUSTER := "894d8ca"
|
|
|
|
.PHONY: cache.fingerprint
|
|
cache.fingerprint:
|
|
find image-* -type f -exec md5sum {} + | awk '{print $1}' | sort | tee /dev/stderr | md5sum | tee cache.fingerprint && echo "$(INTEGRATION_CACHE_BUSTER)" >> cache.fingerprint
|