mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
70691a95ee
* Add local build option Signed-off-by: Derek Nola <derek.nola@suse.com>
45 lines
843 B
Makefile
45 lines
843 B
Makefile
TARGETS := $(shell ls scripts | grep -v \\.sh)
|
|
GO_FILES ?= $$(find . -name '*.go' | grep -v generated)
|
|
|
|
|
|
.dapper:
|
|
@echo Downloading dapper
|
|
@curl -sL https://releases.rancher.com/dapper/v0.6.0/dapper-$$(uname -s)-$$(uname -m) > .dapper.tmp
|
|
@@chmod +x .dapper.tmp
|
|
@./.dapper.tmp -v
|
|
@mv .dapper.tmp .dapper
|
|
|
|
$(TARGETS): .dapper
|
|
./.dapper $@
|
|
|
|
.PHONY: deps
|
|
deps:
|
|
go mod tidy
|
|
|
|
release:
|
|
./scripts/release.sh
|
|
|
|
.DEFAULT_GOAL := ci
|
|
|
|
.PHONY: $(TARGETS)
|
|
|
|
build/data:
|
|
mkdir -p $@
|
|
|
|
.PHONY: binary-size-check
|
|
binary-size-check:
|
|
scripts/binary_size_check.sh
|
|
|
|
.PHONY: image-scan
|
|
image-scan:
|
|
scripts/image_scan.sh $(IMAGE)
|
|
|
|
format:
|
|
gofmt -s -l -w $(GO_FILES)
|
|
goimports -w $(GO_FILES)
|
|
|
|
.PHONY: local
|
|
local:
|
|
DOCKER_BUILDKIT=1 docker build \
|
|
--build-arg="REPO TAG GITHUB_TOKEN GOLANG GOCOVER DEBUG" \
|
|
-t k3s-local -f Dockerfile.local --output=. .
|