Skip to content

Commit

Permalink
docker-driver-push does a build of all the go files and as such needs…
Browse files Browse the repository at this point in the history
… to make called with BUILD_IN_CONTAINER=false from circleci
  • Loading branch information
slim-bean committed Jul 29, 2019
1 parent b946343 commit b8d5868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
command: |
if [ -n "$DOCKER_USER" ]; then
docker login -u "$DOCKER_USER" -p "$DOCKER_PASS" &&
make docker-driver-push
make BUILD_IN_CONTAINER=false docker-driver-push
fi
publish-master:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
command: |
if [ -n "$DOCKER_USER" ]; then
docker login -u "$DOCKER_USER" -p "$DOCKER_PASS" &&
PLUGIN_TAG=master make docker-driver-push && PLUGIN_TAG=latest make docker-driver-push
PLUGIN_TAG=master make BUILD_IN_CONTAINER=false docker-driver-push && PLUGIN_TAG=latest make BUILD_IN_CONTAINER=false docker-driver-push
fi
test-helm:
Expand Down

0 comments on commit b8d5868

Please sign in to comment.