forked from Octops/gameserver-ingress-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
127 lines (94 loc) · 3.23 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
.PHONY: all build clean install get test up deploy-local down docker
## overridable Makefile variables
# test to run
TESTSET = .
# benchmarks to run
BENCHSET ?= .
# version (defaults to short git hash)
VERSION ?= $(shell git rev-parse --short HEAD)
# use correct sed for platform
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
SED := gsed
else
SED := sed
endif
PKG_NAME=github.com/Octops/gameserver-ingress-controller
LDFLAGS := -X "${PKG_NAME}/internal/version.Version=${VERSION}"
LDFLAGS += -X "${PKG_NAME}/internal/version.BuildTS=$(shell date -u '+%Y-%m-%d %I:%M:%S')"
LDFLAGS += -X "${PKG_NAME}/internal/version.GitCommit=$(shell git rev-parse HEAD)"
LDFLAGS += -X "${PKG_NAME}/internal/version.GitBranch=$(shell git rev-parse --abbrev-ref HEAD)"
GO := GO111MODULE=on GOPRIVATE=github.com/Octops GOSUMDB=off go
GOBUILD := CGO_ENABLED=0 $(GO) build $(BUILD_FLAG)
GOTEST := $(GO) test -gcflags='-l' -p 3
CURRENT_DIR := $(shell pwd)
FILES := $(shell find internal cmd -name '*.go' -type f -not -name '*.pb.go' -not -name '*_generated.go' -not -name '*_test.go')
TESTS := $(shell find internal cmd -name '*.go' -type f -not -name '*.pb.go' -not -name '*_generated.go' -name '*_test.go')
OCTOPS_BIN := bin/octops-controller
IMAGE_REPO=octops/gameserver-ingress-controller
DOCKER_IMAGE_TAG ?= octops/gameserver-ingress-controller:${VERSION}
RELEASE_TAG=0.2.9
default: clean build
build: clean $(OCTOPS_BIN)
$(OCTOPS_BIN):
CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags '$(LDFLAGS)' -a -installsuffix cgo -o $(OCTOPS_BIN) .
dist:
CGO_ENABLED=0 GOOS=linux go build -ldflags '$(LDFLAGS)' -a -installsuffix cgo -o $(OCTOPS_BIN) .
CGO_ENABLED=0 GOOS=darwin go build -ldflags '$(LDFLAGS)' -a -installsuffix cgo -o $(OCTOPS_BIN)-darwin .
clean:
rm -f $(OCTOPS_BIN)*
get:
$(GO) get ./...
$(GO) mod verify
$(GO) mod tidy
update:
$(GO) get -u -v all
$(GO) mod verify
$(GO) mod tidy
fmt:
gofmt -s -l -w $(FILES) $(TESTS)
lint:
golangci-lint run
test:
$(GO) clean -testcache
$(GOTEST) -run=$(TESTSET) ./...
@echo
@echo Configured tests ran ok.
test-strict:
$(GO) test -p 3 -run=$(TESTSET) -gcflags='-l -m' -race ./...
@echo
@echo Configured tests ran ok.
bench:
DEBUG=0 $(GOTEST) -run=nothing -bench=$(BENCHSET) -benchmem ./...
@echo
@echo Configured benchmarks ran ok.
vendor:
$(GO) mod vendor
docker:
docker build -t $(DOCKER_IMAGE_TAG) .
buildx:
docker buildx build --platform linux/arm64/v8,linux/amd64 --push --tag $(IMAGE_REPO):$(RELEASE_TAG) .
push: docker
docker push $(DOCKER_IMAGE_TAG)
latest: docker
docker tag $(DOCKER_IMAGE_TAG) $(IMAGE_REPO):latest
docker push $(IMAGE_REPO):latest
release: latest
docker tag $(DOCKER_IMAGE_TAG) $(IMAGE_REPO):$(RELEASE_TAG)
docker push $(IMAGE_REPO):$(RELEASE_TAG)
beta: docker
docker tag $(DOCKER_IMAGE_TAG) $(IMAGE_REPO):$(RELEASE_TAG)
docker push $(IMAGE_REPO):$(RELEASE_TAG)
install: release
kubectl apply -f deploy/install.yaml
up:
@echo Starting services
docker-compose up
down:
@echo Stopping services
docker-compose down
deploy-local:
./hack/push_k3s.sh
make run: docker
docker run -it --rm -v ${PWD}/.infrastructure/k3s.yaml:/home/octops/.kube/config \
octops/gameserver-ingress-controller:${VERSION} --kubeconfig=/home/octops/.kube/config