From 0aa86f60a784192ea7ae1f8db78edef00be82ffc Mon Sep 17 00:00:00 2001 From: Sylvain Boily <4981802+djsly@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:45:06 -0400 Subject: [PATCH] forcing make generate before e2e --- .gitignore | 1 + .pipelines/templates/e2e-template.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 121774df7cf..b03e399aee5 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ hack/tools/bin # migration off of go-bindata pkg/templates/templates_generated.go e2e/scenario-logs/ +coverage_raw.out diff --git a/.pipelines/templates/e2e-template.yaml b/.pipelines/templates/e2e-template.yaml index 2a5bb8d9b22..c9826985a1b 100644 --- a/.pipelines/templates/e2e-template.yaml +++ b/.pipelines/templates/e2e-template.yaml @@ -35,6 +35,9 @@ jobs: echo "Build.BuildId is not specified. Running default e2e tests." fi + # Generating the testdata for the e2e tests + make generate + cd e2e mkdir -p bin GOBIN=`pwd`/bin/ go install github.com/jstemmer/go-junit-report/v2@latest