Skip to content

Commit 0ca69c7

Browse files
authored
Merge pull request #207 from weaveworks/keep-make-targets-independent
Avoid some duplication in CI run
2 parents 0629618 + 49b0402 commit 0ca69c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SHELL = /usr/bin/env bash -o pipefail
3232
.SHELLFLAGS = -ec
3333

3434
.PHONY: all
35-
all: build
35+
all: lint test build
3636

3737
##@ General
3838

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

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

122122
.PHONY: docker-push
@@ -235,4 +235,4 @@ e2e-clean:
235235
flux uninstall --silent
236236
ifneq ($(CI), true)
237237
kind delete cluster --name=pipeline-controller
238-
endif
238+
endif

0 commit comments

Comments
 (0)