-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
134 lines (100 loc) · 3.58 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
DOCKER_BIN?=docker
# Image names
IMAGE_REPOSITORY?=ghcr.io/argoproj-labs/argocd-agent
IMAGE_NAME_AGENT=argocd-agent-agent
IMAGE_NAME_PRINCIPAL=argocd-agent-principal
IMAGE_PLATFORMS?=linux/amd64
IMAGE_TAG?=latest
# Binary names
BIN_NAME_AGENT=argocd-agent-agent
BIN_NAME_PRINCIPAL=argocd-agent-principal
BIN_ARCH?=$(shell go env GOARCH)
BIN_OS?=$(shell go env GOOS)
current_dir := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
BIN_DIR := $(current_dir)/build/bin
PROTOC_GEN_GO_VERSION?=v1.28
PROTOC_GEN_GO_GRPC_VERSION=v1.2
GOLANG_CI_LINT_VERSION=v1.58.1
MOCKERY_V2_VERSION?=v2.43.0
.PHONY: build
build: agent principal
.PHONY: test
test:
mkdir -p test/out
./hack/test.sh
.PHONY: test-e2e
test-e2e:
go test -race -timeout 60s github.com/argoproj-labs/argocd-agent/test/e2e
.PHONY: mod-vendor
mod-vendor:
go mod vendor
.PHONY: clean
clean:
rm -rf dist/ vendor/
# clean-all also removes any build-time dependencies installed into the tree
.PHONY: clean-all
clean-all: clean
rm -rf build
./build/bin:
mkdir -p build/bin
./build/bin/golangci-lint: ./build/bin
GOBIN=$(BIN_DIR) go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(GOLANG_CI_LINT_VERSION)
./build/bin/protoc-gen-go: ./build/bin
GOBIN=$(BIN_DIR) go install google.golang.org/protobuf/cmd/protoc-gen-go@$(PROTOC_GEN_GO_VERSION)
./build/bin/protoc-gen-go-grpc: ./build/bin
GOBIN=$(BIN_DIR) go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@$(PROTOC_GEN_GO_GRPC_VERSION)
./build/bin/protoc: ./build/bin
./hack/install/install-protoc.sh
./build/bin/mockery: ./build/bin
GOBIN=$(current_dir)/build/bin go install github.com/vektra/mockery/v2@$(MOCKERY_V2_VERSION)
.PHONY: install-mockery
install-mockery: ./build/bin/mockery
.PHONY: install-golangci-lint
install-golangci-lint: ./build/bin/golangci-lint
@echo "golangci-lint installed."
.PHONY: install-protoc-go
install-protoc-go: ./build/bin/protoc-gen-go ./build/bin/protoc-gen-go-grpc
@echo "protoc-gen-go and protoc-gen-go-grpc installed."
.PHONY: install-protoc
install-protoc: ./build/bin/protoc
@echo "protoc installed."
.PHONY: install-proto-toolchain
install-proto-toolchain: install-protoc install-protoc-go
@echo "Build toolchain installed."
.PHONY: install-lint-toolchain
install-lint-toolchain: install-golangci-lint
@echo "Lint toolchain installed."
.PHONY: install-build-deps
install-build-deps: install-lint-toolchain install-proto-toolchain
@echo "Build dependencies installed"
.PHONY: protogen
protogen: mod-vendor install-proto-toolchain
./hack/generate-proto.sh
.PHONY: mocks
mocks: install-mockery
$(BIN_DIR)/mockery
.PHONY: codegen
codegen: protogen
.PHONY: lint
lint: install-lint-toolchain
$(BIN_DIR)/golangci-lint run --verbose
.PHONY: agent
agent:
CGO_ENABLED=0 GOARCH=$(BIN_ARCH) GOOS=$(BIN_OS) go build -v -o dist/$(BIN_NAME_AGENT) -ldflags="-extldflags=-static" cmd/agent/main.go
.PHONY: principal
principal:
CGO_ENABLED=0 GOARCH=$(BIN_ARCH) GOOS=$(BIN_OS) go build -v -o dist/$(BIN_NAME_PRINCIPAL) -ldflags="-extldflags=-static" cmd/principal/main.go
.PHONY: images
images: image-agent image-principal
.PHONY: image-agent
image-agent:
$(DOCKER_BIN) build -f Dockerfile.agent --platform $(IMAGE_PLATFORMS) -t $(IMAGE_REPOSITORY)/$(IMAGE_NAME_AGENT):$(IMAGE_TAG) .
.PHONY: image-principal
image-principal:
$(DOCKER_BIN) build -f Dockerfile.principal --platform $(IMAGE_PLATFORMS) -t $(IMAGE_REPOSITORY)/$(IMAGE_NAME_PRINCIPAL):$(IMAGE_TAG) .
push-images:
$(DOCKER_BIN) push $(IMAGE_REPOSITORY)/$(IMAGE_NAME_AGENT):$(IMAGE_TAG)
$(DOCKER_BIN) push $(IMAGE_REPOSITORY)/$(IMAGE_NAME_PRINCIPAL):$(IMAGE_TAG)
.PHONY: help
help:
@echo "Not yet, sorry."