-
Notifications
You must be signed in to change notification settings - Fork 429
/
Makefile
120 lines (94 loc) · 3.59 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
.PHONY: clean doc modclean mod goinstall build dist deb
TARGET_OS = $(if ${OS},${OS},windows darwin linux freebsd)
TARGET_ARCH = $(if ${ARCH},${ARCH},amd64 arm64)
VERSION := $(if ${CDS_VERSION},${CDS_VERSION},snapshot)
GIT_DESCRIBE := $(shell git describe --tags)
GIT_VERSION := $(if ${GIT_DESCRIBE},${GIT_DESCRIBE:v%=%},0.0.0-0-snapshot)
SHA512 := $(if ifeq ${UNAME} "Darwin",shasum -a 512,sha512sum)
TARGET_ENGINE := $(if ${TARGET_ENGINE},${TARGET_ENGINE},engine)
TARGET_WORKER := $(if ${TARGET_WORKER},${TARGET_WORKER},worker)
TARGET_CDSCTL := $(if ${TARGET_CDSCTL},${TARGET_CDSCTL},cdsctl)
doc:
ifndef GEN_PATH
$(error GEN_PATH is undefined)
endif
# GEN_PATH=./docs/content/docs/components
$(TARGET_CDSCTL) doc $(GEN_PATH)
$(TARGET_WORKER) doc $(GEN_PATH)
$(TARGET_ENGINE) doc $(GEN_PATH) ./
cd docs && ./build.sh
modclean:
@echo "cleaning modcache... " && GO111MODULE=off go clean -modcache || true
ENGINE_DIST = $(wildcard engine/dist/*)
WORKER_DIST = $(wildcard engine/worker/dist/*)
CLI_DIST = $(wildcard cli/cdsctl/dist/*)
CONTRIB_DIST = $(wildcard contrib/dist/*)
UI_DIST = ui/ui.tar.gz
FILES = dist/FILES
TARGET_DIR := dist/
ALL_DIST = $(ENGINE_DIST)
ALL_DIST := $(ALL_DIST) $(WORKER_DIST)
ALL_DIST := $(ALL_DIST) $(CLI_DIST)
ALL_DIST := $(ALL_DIST) $(UI_DIST)
ALL_DIST := $(ALL_DIST) $(CONTRIB_DIST)
ALL_TARGETS := $(foreach DIST,$(ALL_DIST),$(addprefix $(TARGET_DIR),$(notdir $(DIST))))
build:
$(info Building CDS Components for $(TARGET_OS) - $(TARGET_ARCH))
$(MAKE) build_ui -j1
$(MAKE) build_engine -j4
$(MAKE) build_worker -j4
$(MAKE) build_cli -j4
$(MAKE) build_contrib -j4
$(MAKE) package -C contrib TARGET_DIST="$(abspath $(TARGET_DIR))"
$(MAKE) archive -C contrib TARGET_DIST="$(abspath $(TARGET_DIR))"
build_ui:
$(MAKE) build -C ui
build_engine:
$(MAKE) build -C engine OS="${TARGET_OS}" ARCH="${TARGET_ARCH}"
build_worker:
$(MAKE) build -C engine/worker OS="${TARGET_OS}" ARCH="${TARGET_ARCH}"
build_cli:
$(MAKE) build -C cli/cdsctl OS="${TARGET_OS}" ARCH="${TARGET_ARCH}"
build_contrib:
$(MAKE) build -C contrib OS="${TARGET_OS}" ARCH="${TARGET_ARCH}"
define get_dist_from_target
$(filter %/$(notdir $(1)), $(ALL_DIST))
endef
$(ALL_TARGETS):
@mkdir -p $(TARGET_DIR)
$(info copying $(call get_dist_from_target, $@) to $@)
@cp -f $(call get_dist_from_target, $@) $@
dist: $(ALL_TARGETS)
$(info sha512 = ${SHA512})
rm -f $(FILES)
cd dist/ && for i in `ls -p | grep -v /|grep -v FILES`; do echo "$$i;`${SHA512} $$i|cut -d ' ' -f1`" >> FILES; done;
clean:
@rm -rf target
@rm -rf dist
$(MAKE) clean -C engine
$(MAKE) clean -C engine/worker
$(MAKE) clean -C cli/cdsctl
$(MAKE) clean -C ui
$(MAKE) clean -C contrib
deb: dist target/cds-engine.deb
$(TARGET_DIR)/config.toml.sample:
$(TARGET_DIR)/cds-engine-linux-amd64 config new > $(TARGET_DIR)/config.toml.sample
target/cds-engine.deb: $(TARGET_DIR)/config.toml.sample
debpacker make --workdir dist --config .debpacker.yml --var version=$(GIT_VERSION)
docker:
docker build --tag ovhcom/cds-engine:$(VERSION) .
tar: target/cds-engine.tar.gz
target/cds-engine.tar.gz: $(TARGET_DIR)/config.toml.sample $(TARGET_DIR)/tmpl-config
mkdir -p target
tar -czvf target/cds-engine.tar.gz -C $(TARGET_DIR) .
tidy:
@echo "Running tidy on cds main project"
@go mod tidy
@echo "Running tidy on contrib/grpcplugins/action/"
$(MAKE) tidy -C contrib/grpcplugins/action
@echo "Running tidy on contrib/integrations/"
$(MAKE) tidy -C contrib/integrations
@echo "Running tidy on tests/fixtures/04SCWorkflowRunSimplePlugin"
@(cd tests/fixtures/04SCWorkflowRunSimplePlugin && go mod tidy)
@(cd sdk/interpolate && go mod tidy)
@(cd tools/smtpmock && go mod tidy)