We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0629618 + 49b0402 commit 0ca69c7Copy full SHA for 0ca69c7
Makefile
@@ -32,7 +32,7 @@ SHELL = /usr/bin/env bash -o pipefail
32
.SHELLFLAGS = -ec
33
34
.PHONY: all
35
-all: build
+all: lint test build
36
37
##@ General
38
@@ -116,7 +116,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
116
go run ./main.go --log-level debug
117
118
.PHONY: docker-build
119
-docker-build: test ## Build docker image with the manager.
+docker-build: ## Build docker image with the manager.
120
docker buildx build --secret id=netrc,src=.netrc -t ${IMG} $(DOCKER_BUILD_ARGS) $(DOCKER_BUILD_LABELS) .
121
122
.PHONY: docker-push
@@ -235,4 +235,4 @@ e2e-clean:
235
flux uninstall --silent
236
ifneq ($(CI), true)
237
kind delete cluster --name=pipeline-controller
238
-endif
+endif
0 commit comments