-
Notifications
You must be signed in to change notification settings - Fork 4
/
makefile
90 lines (74 loc) · 2.99 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
HELM_HOME ?= $(shell helm home)
VERSION := $(shell sed -n -e 's/version:[ "]*\([^"]*\).*/\1/p' plugin.yaml)
HELM_3_PLUGINS := $(shell bash -c 'eval $$(helm env); echo $$HELM_PLUGINS')
PKG:= kcl-lang.io/helm-kcl
LDFLAGS := -X $(PKG)/cmd.Version=$(VERSION)
# Clear the "unreleased" string in BuildMetadata
LDFLAGS += -X k8s.io/helm/pkg/version.BuildMetadata=
LDFLAGS += -X k8s.io/helm/pkg/version.Version=$(shell ./scripts/dep-helm-version.sh)
GO ?= go
.PHONY: run
run:
go run main.go template --file ./examples/workload-charts-with-kcl/kcl-run.yaml
.PHONY: format
format:
test -z "$$(find . -type f -o -name '*.go' -exec gofmt -d {} + | tee /dev/stderr)" || \
test -z "$$(find . -type f -o -name '*.go' -exec gofmt -w {} + | tee /dev/stderr)"
.PHONY: install
install: build
mkdir -p $(HELM_HOME)/plugins/helm-kcl/bin
cp -f bin/kcl $(HELM_HOME)/plugins/helm-kcl/bin
cp -f plugin.yaml $(HELM_HOME)/plugins/helm-kcl/
.PHONY: install/helm3
install/helm3: build
mkdir -p $(HELM_3_PLUGINS)/helm-kcl/bin
cp -f bin/kcl $(HELM_3_PLUGINS)/helm-kcl/bin
cp -f plugin.yaml $(HELM_3_PLUGINS)/helm-kcl/
.PHONY: lint
lint:
scripts/update-gofmt.sh
scripts/verify-gofmt.sh
# scripts/verify-golint.sh
scripts/verify-govet.sh
.PHONY: build
build: lint
mkdir -p bin/
go build -v -o bin/kcl -ldflags="$(LDFLAGS)"
.PHONY: test
test:
go test -v ./...
.PHONY: bootstrap
bootstrap:
go mod tidy
.PHONY: docker-run-release
docker-run-release: export pkg=/go/src/github.com/kcl-lang/helm-kcl
docker-run-release:
git checkout main
git push
docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd):$(pkg) -w $(pkg) golang:1.23 make bootstrap release
.PHONY: dist
dist: export COPYFILE_DISABLE=1 #teach OSX tar to not put ._* files in tar archive
dist: export CGO_ENABLED=0
dist:
rm -rf build/kcl/* release/*
mkdir -p build/kcl/bin release/
cp -f README.md LICENSE plugin.yaml build/kcl
GOOS=linux GOARCH=amd64 $(GO) build -o build/kcl/bin/kcl -trimpath -ldflags="$(LDFLAGS)"
tar -C build/ -zcvf $(CURDIR)/release/helm-kcl-linux-amd64.tgz kcl/
GOOS=linux GOARCH=arm64 $(GO) build -o build/kcl/bin/kcl -trimpath -ldflags="$(LDFLAGS)"
tar -C build/ -zcvf $(CURDIR)/release/helm-kcl-linux-arm64.tgz kcl/
GOOS=darwin GOARCH=amd64 $(GO) build -o build/kcl/bin/kcl -trimpath -ldflags="$(LDFLAGS)"
tar -C build/ -zcvf $(CURDIR)/release/helm-kcl-macos-amd64.tgz kcl/
GOOS=darwin GOARCH=arm64 $(GO) build -o build/kcl/bin/kcl -trimpath -ldflags="$(LDFLAGS)"
tar -C build/ -zcvf $(CURDIR)/release/helm-kcl-macos-arm64.tgz kcl/
rm build/kcl/bin/kcl
GOOS=windows GOARCH=amd64 $(GO) build -o build/kcl/bin/kcl.exe -trimpath -ldflags="$(LDFLAGS)"
tar -C build/ -zcvf $(CURDIR)/release/helm-kcl-windows-amd64.tgz kcl/
.PHONY: release
release: lint dist
scripts/release.sh v$(VERSION)
# Test for the plugin installation with `helm plugin install -v THIS_BRANCH` works
# Useful for verifying modified `install-binary.sh` still works against various environments
.PHONY: test-plugin-installation
test-plugin-installation:
docker build -f testdata/Dockerfile.install .