forked from apache/incubator-devlake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
132 lines (95 loc) · 3.98 KB
/
Makefile
File metadata and controls
132 lines (95 loc) · 3.98 KB
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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: you have to use tabs in this file for make. Not spaces.
# https://stackoverflow.com/questions/920413/make-error-missing-separator
# https://tutorialedge.net/golang/makefiles-for-go-developers/
SHA = $(shell git show -s --format=%h)
TAG ?= $(shell git tag --points-at HEAD)
IMAGE_REPO ?= "apache"
VERSION = $(TAG)@$(SHA)
go-dep:
go install github.com/vektra/mockery/v2@latest
go install github.com/swaggo/swag/cmd/swag@v1.8.4
go install github.com/atombender/go-jsonschema/cmd/gojsonschema@latest
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.49.0
python-dep:
pip install -r requirements.txt
dep: go-dep python-dep
swag:
swag init --parseDependency --parseInternal -o ./api/docs -g ./api/api.go -g plugins/*/api/*.go
@echo "visit the swagger document on http://localhost:8080/swagger/index.html"
build-plugin:
@sh scripts/compile-plugins.sh
build-plugin-debug:
@sh scripts/compile-plugins.sh -gcflags='all=-N -l'
build-worker:
go build -ldflags "-X 'github.com/apache/incubator-devlake/version.Version=$(VERSION)'" -o bin/lake-worker ./worker/
build-server: swag
go build -ldflags "-X 'github.com/apache/incubator-devlake/version.Version=$(VERSION)'" -o bin/lake
build: build-plugin build-server
all: build build-worker
build-server-image:
docker build -t $(IMAGE_REPO)/devlake:$(TAG) --file ./Dockerfile .
build-config-ui-image:
cd config-ui; docker build -t $(IMAGE_REPO)/devlake-config-ui:$(TAG) --file ./Dockerfile .
build-grafana-image:
cd grafana; docker build -t $(IMAGE_REPO)/devlake-dashboard:$(TAG) --file ./Dockerfile .
build-images: build-server-image build-config-ui-image build-grafana-image
tap-models:
chmod +x ./scripts/singer-model-generator.sh
@sh scripts/singer-model-generator.sh config/singer/pagerduty.json plugins/pagerduty --all
push-server-image: build-server-image
docker push $(IMAGE_REPO)/devlake:$(TAG)
push-config-ui-image: build-config-ui-image
docker push $(IMAGE_REPO)/devlake-config-ui:$(TAG)
push-grafana-image: build-grafana-image
docker push $(IMAGE_REPO)/devlake-dashboard:$(TAG)
push-images: push-server-image push-config-ui-image push-grafana-image
run:
go run main.go
worker:
go run worker/*.go
dev: build-plugin run
debug: build-plugin-debug
dlv debug main.go
configure:
docker-compose up config-ui
configure-dev:
cd config-ui; npm install; npm start;
commit:
git cz
mock:
rm -rf mocks
mockery --dir=./plugins/core --unroll-variadic=false --name='.*'
mockery --dir=./plugins/core/dal --unroll-variadic=false --name='.*'
mockery --dir=./plugins/helper --unroll-variadic=false --name='.*'
test: unit-test e2e-test
unit-test: mock build
set -e; for m in $$(go list ./... | egrep -v 'test|models|e2e'); do echo $$m; go test -timeout 60s -v $$m; done
e2e-test: build
PLUGIN_DIR=$(shell readlink -f bin/plugins) go test -timeout 300s -v ./test/...
e2e-plugins:
export ENV_PATH=$(shell readlink -f .env); set -e; for m in $$(go list ./plugins/... | egrep 'e2e'); do echo $$m; go test -timeout 300s -gcflags=all=-l -v $$m; done
real-e2e-test:
PLUGIN_DIR=$(shell readlink -f bin/plugins) go test -v ./e2e/...
lint:
golangci-lint run
fmt:
find . -name \*.go | xargs gofmt -s -w -l
clean:
@rm -rf bin
restart:
docker-compose down; docker-compose up -d