Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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