Skip to content

Commit

Permalink
Plain progress
Browse files Browse the repository at this point in the history
  • Loading branch information
charith-elastic committed Nov 11, 2020
1 parent 261816f commit 3a38324
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ switch-eks:
docker-multiarch-build: go-generate generate-config-file
@ hack/docker.sh -l -m $(OPERATOR_IMAGE)
docker buildx build . \
--progress=plain \
--build-arg GO_LDFLAGS='$(GO_LDFLAGS)' \
--build-arg GO_TAGS='$(GO_TAGS)' \
--build-arg VERSION='$(VERSION)' \
Expand All @@ -354,6 +355,7 @@ docker-multiarch-build: go-generate generate-config-file

docker-build: go-generate generate-config-file
DOCKER_BUILDKIT=1 docker build . \
--progress=plain \
--build-arg GO_LDFLAGS='$(GO_LDFLAGS)' \
--build-arg GO_TAGS='$(GO_TAGS)' \
--build-arg VERSION='$(VERSION)' \
Expand Down Expand Up @@ -393,14 +395,15 @@ E2E_DEPLOY_CHAOS_JOB ?= false

# clean to remove irrelevant/build-breaking generated public keys
e2e-docker-build: clean
DOCKER_BUILDKIT=1 docker build --build-arg E2E_JSON=$(E2E_JSON) -t $(E2E_IMG) -f test/e2e/Dockerfile .
DOCKER_BUILDKIT=1 docker build --progress=plain --build-arg E2E_JSON=$(E2E_JSON) -t $(E2E_IMG) -f test/e2e/Dockerfile .

e2e-docker-push:
@ hack/docker.sh -l -p $(E2E_IMG)

e2e-docker-multiarch-build: clean
@ hack/docker.sh -l -m $(E2E_IMG)
docker buildx build \
--progress=plain \
--file test/e2e/Dockerfile \
--build-arg E2E_JSON=$(E2E_JSON) \
--platform linux/amd64,linux/arm64 \
Expand Down

0 comments on commit 3a38324

Please sign in to comment.