Skip to content

Commit

Permalink
Run build before integration test
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
carolynvs-msft committed Jun 1, 2020
1 parent 372ca70 commit efaab94
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build/azure-pipelines.pr-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
inputs:
secureFile: kubeconfig

- script: |
make build
workingDirectory: '$(System.DefaultWorkingDirectory)'
displayName: 'Build'
- script: |
export KUBECONFIG=$DOWNLOADSECUREFILE_SECUREFILEPATH
make test-integration
Expand Down

0 comments on commit efaab94

Please sign in to comment.