From 4ea5ce93c2edb6a8f22dd91de456b56f68b819ab Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Mon, 6 May 2024 12:02:45 -0400 Subject: [PATCH] Adding go build cache to fuzz output This is to capture the location in CI in order to cache across fuzz runs Signed-off-by: Matt Farina --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1a4271b..9ca87a2 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ test-cover: .PHONY: fuzz fuzz: @echo "==> Running Fuzz Tests" + go env GOCACHE go test -fuzz=FuzzNewVersion -fuzztime=15s . go test -fuzz=FuzzStrictNewVersion -fuzztime=15s . go test -fuzz=FuzzNewConstraint -fuzztime=15s .