Skip to content

Commit

Permalink
Merge pull request #207 from weaveworks/keep-make-targets-independent
Browse files Browse the repository at this point in the history
Avoid some duplication in CI run
  • Loading branch information
squaremo authored Nov 7, 2023
2 parents 0629618 + 49b0402 commit 0ca69c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SHELL = /usr/bin/env bash -o pipefail
.SHELLFLAGS = -ec

.PHONY: all
all: build
all: lint test build

##@ General

Expand Down Expand Up @@ -116,7 +116,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
go run ./main.go --log-level debug

.PHONY: docker-build
docker-build: test ## Build docker image with the manager.
docker-build: ## Build docker image with the manager.
docker buildx build --secret id=netrc,src=.netrc -t ${IMG} $(DOCKER_BUILD_ARGS) $(DOCKER_BUILD_LABELS) .

.PHONY: docker-push
Expand Down Expand Up @@ -235,4 +235,4 @@ e2e-clean:
flux uninstall --silent
ifneq ($(CI), true)
kind delete cluster --name=pipeline-controller
endif
endif

0 comments on commit 0ca69c7

Please sign in to comment.