-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
49 lines (35 loc) · 1.55 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
export GO111MODULE = on
APP_NAME?=sample-service
BUILD_VERSION?=0.0.0-snapshot
.PHONY: test run build build-with-docker docker-build docker-push lint install-build-deps
GOPATH := $(shell go env GOPATH)
LINTERS := \
github.com/golang/lint/golint \
github.com/kisielk/errcheck \
honnef.co/go/tools/cmd/staticcheck \
honnef.co/go/tools/cmd/unused
PACKAGES = $(shell go list ./... | grep -v /vendor/)
install-build-deps:
go install -v $(LINTERS)
lint:
env GO111MODULE=off go fmt ./...
env GO111MODULE=on go vet -mod=vendor ./...
test: lint
mkdir -p builds
env GO111MODULE=on go test -mod=vendor -race -coverprofile=${UNIT_COVERAGE_OUTPUT} ./...
run:
env GOOS=linux CGO_ENABLED=0 GO111MODULE=on /usr/local/go/bin/go run -mod=vendor cmd/sample-service/main.go
build:
env GOOS=linux CGO_ENABLED=0 GO111MODULE=on /usr/local/go/bin/go build -mod=vendor -o builds/sample-service cmd/sample-service/main.go
docker-build:
docker build --rm -t sample-service .
docker-build-images: docker-build
docker login -u ${ARTIFACTORY_USER} -p ${ARTIFACTORY_PASSWORD}
docker tag sample-service snagarju/sample-service:latest
docker tag sample-service snagarju/sample-service:${BUILD_VERSION}
docker push snagarju/sample-service:latest
docker push snagarju/sample-service:${BUILD_VERSION}
certs:
mkdir -p hack
openssl req -new -newkey rsa:2048 -nodes -keyout ./hack/localhost.key -out ./hack/localhost.csr
openssl x509 -req -days 365 -in ./hack/localhost.csr -signkey ./hack/localhost.key -out ./hack/localhost.crt