Skip to content

Commit

Permalink
Do not dep ensure anything
Browse files Browse the repository at this point in the history
It takes a lot of time to sync the vendor dir that it's better to do it on request only.
  • Loading branch information
ingvagabund committed Aug 16, 2018
1 parent 7b7ebd4 commit 3cc5c93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ gendeepcopy:
-O zz_generated.deepcopy \
-h boilerplate.go.txt

build: depend
build:
CGO_ENABLED=0 go install -a -ldflags '-extldflags "-static"' sigs.k8s.io/cluster-api-provider-aws/cmd/cluster-controller
CGO_ENABLED=0 go install -a -ldflags '-extldflags "-static"' sigs.k8s.io/cluster-api-provider-aws/cmd/machine-controller

images: depend
images:
$(MAKE) -C cmd/cluster-controller image
$(MAKE) -C cmd/machine-controller image

push: depend
push:
$(MAKE) -C cmd/cluster-controller push
$(MAKE) -C cmd/machine-controller push

check: depend fmt vet
check: fmt vet

test:
go test -race -cover ./cmd/... ./cloud/...
Expand Down

0 comments on commit 3cc5c93

Please sign in to comment.