forked from apache/skywalking-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
131 lines (114 loc) · 3.95 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
#
# 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.
#
SH = sh
GO = go
GIT = git
GO_PATH = $$($(GO) env GOPATH)
GO_BUILD = $(GO) build
GO_GET = $(GO) get
GO_LINT = $(GO_PATH)/bin/golangci-lint
GO_TEST = $(GO) test
GO_TEST_LDFLAGS =
REPODIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))/
LINT_FILE_PATH = $(REPODIR).golangci.yml
SHELL = /bin/bash
HUB ?= docker.io/apache
PROJECT ?= skywalking-go
VERSION ?= $(shell git rev-parse --short HEAD)
deps:
$(GO_GET) -v -t -d ./...
linter:
$(GO_LINT) version || curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GO_PATH)/bin v1.50.0
.PHONY: test
test:
echo "mode: atomic" > ${REPODIR}/coverage.txt;
@for dir in $$(find . -name go.mod -exec dirname {} \; ); do \
if [[ $$dir == "./test/plugins/scenarios/"* ]]; then \
continue; \
fi; \
cd $$dir; \
echo "Testing $$dir"; \
go test -v -coverprofile=module_coverage.txt -covermode=atomic ./...; \
test_status=$$?; \
if [ -f module_coverage.txt ]; then \
tail -n +2 module_coverage.txt >> ${REPODIR}/coverage.txt; \
rm module_coverage.txt; \
fi; \
cd ${REPODIR}; \
if [ $$test_status -ne 0 ]; then \
echo "Error occurred during go test, exiting..."; \
exit $$test_status; \
fi; \
done
.PHONY: lint
lint: linter
@for dir in $$(find . -name go.mod -exec dirname {} \; ); do \
if [[ $$dir == "./test/plugins/scenarios/"* ]]; then \
continue; \
fi; \
echo "Linting $$dir"; \
(cd $$dir && $(GO_LINT) run -v --timeout 5m --config $(LINT_FILE_PATH) ./...); \
if [ $$? -ne 0 ]; then \
exit 1; \
fi; \
done
$(GO_LINT) run -v --timeout 5m ./...
.PHONY: check
check:
go mod tidy
@if [ ! -z "`git status -s`" ]; then \
echo "Following files are not consistent with CI:"; \
git status -s; \
git diff; \
exit 1; \
fi
.PHONY: build
build:
@make -C tools/go-agent build
.PHONE: release
release:
/bin/sh tools/release/create_bin_release.sh
/bin/sh tools/release/create_source_release.sh
base.all := go1.16 go1.17 go1.18 go1.19 go1.20 go1.21 go1.22
base.each = $(word 1, $@)
base.image.go1.16 := golang:1.16
base.image.go1.17 := golang:1.17
base.image.go1.18 := golang:1.18
base.image.go1.19 := golang:1.19
base.image.go1.20 := golang:1.20
base.image.go1.21 := golang:1.21
base.image.go1.22 := golang:1.22
docker.%: PLATFORMS =
docker.%: LOAD_OR_PUSH = --load
docker.push.%: PLATFORMS = --platform linux/amd64,linux/arm64
docker.push.%: LOAD_OR_PUSH = --push
.PHONY: $(base.all)
$(base.all:%=docker.%): BASE_IMAGE=$($(base.each:docker.%=base.image.%))
$(base.all:%=docker.%): FINAL_TAG=$(VERSION)-$(base.each:docker.%=%)
$(base.all:%=docker.push.%): BASE_IMAGE=$($(base.each:docker.push.%=base.image.%))
$(base.all:%=docker.push.%): FINAL_TAG=$(VERSION)-$(base.each:docker.push.%=%)
$(base.all:%=docker.%) $(base.all:%=docker.push.%):
docker buildx create --use --driver docker-container --name skywalking_go > /dev/null 2>&1 || true
docker buildx build $(PLATFORMS) $(LOAD_OR_PUSH) \
--no-cache \
--build-arg "BASE_GO_IMAGE=$(BASE_IMAGE)" \
--build-arg "VERSION=$(VERSION)" \
. -t $(HUB)/$(PROJECT):$(FINAL_TAG)
docker buildx rm skywalking_go || true
.PHONY: docker docker.push
docker: $(base.all:%=docker.%)
docker.push: $(base.all:%=docker.push.%)