From efaab94c12661babaa678a2985a3e61c7eccbb9c Mon Sep 17 00:00:00 2001 From: Carolyn Van Slyck Date: Mon, 1 Jun 2020 09:00:55 -0500 Subject: [PATCH] Run build before integration test I'm not sure why this was implicitly running a build before... Let's make it explicit since a minor change to the Makefile caused the implicit run of the build target to go away and break CI. We don't make it a hard dependency in the Makefile because this lets you iterate on just the test without doing a full rebuild inbetween. --- build/azure-pipelines.pr-manual.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/azure-pipelines.pr-manual.yml b/build/azure-pipelines.pr-manual.yml index e61bf961d..fd8c46f03 100644 --- a/build/azure-pipelines.pr-manual.yml +++ b/build/azure-pipelines.pr-manual.yml @@ -43,6 +43,11 @@ jobs: inputs: secureFile: kubeconfig + - script: | + make build + workingDirectory: '$(System.DefaultWorkingDirectory)' + displayName: 'Build' + - script: | export KUBECONFIG=$DOWNLOADSECUREFILE_SECUREFILEPATH make test-integration