-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
56 lines (44 loc) · 1.54 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
BINARY = gitlabctl
VET_REPORT = vet.report
TEST_REPORT = tests.xml
GOARCH = amd64
BINDIR = bin
VERSION?=latest
COMMIT=$(shell git rev-parse HEAD)
BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
# Symlink into GOPATH
GITHUB_USERNAME=devopsctl
BUILD_DIR=${GOPATH}/src/github.com/${GITHUB_USERNAME}/${BINARY}
# Setup the -ldflags option for go build here, interpolate the variable values
LDFLAGS = -ldflags "-X main.VERSION=${VERSION} -X main.COMMIT=${COMMIT} -X main.BRANCH=${BRANCH}"
# Build the project
all: clean getdep linux darwin windows
cd ${BINDIR} && shasum -a 256 ** > shasum256.txt
create_bin_dir:
rm -fr ${BINDIR}
mkdir -p ${BINDIR}
linux: getdep create_bin_dir
echo Build for linux ${GOARCH}
GOOS=linux GOARCH=${GOARCH} go build ${LDFLAGS} -o ${BINDIR}/${BINARY}-linux-${GOARCH} .
darwin: getdep create_bin_dir
echo Build for darwin ${GOARCH}
GOOS=darwin GOARCH=${GOARCH} go build ${LDFLAGS} -o ${BINDIR}/${BINARY}-darwin-${GOARCH} .
windows: create_bin_dir
echo Build for windows ${GOARCH}
GOOS=windows go get -v -u github.com/spf13/cobra
GOOS=windows GOARCH=${GOARCH} go build ${LDFLAGS} -o ${BINDIR}/${BINARY}-windows-${GOARCH}.exe .
test: getdep
rm -f ~/.gitlabctl.yaml
go test -v ./... -failfast
coverage: getdep
rm -f ~/.gitlabctl.yaml
go test -cpu=1 -v ./... -failfast -coverprofile=coverage.txt -covermode=count
getdep:
go get -v ./...
go get -u github.com/stretchr/testify
go get -u github.com/kyokomi/emoji
go get -u github.com/stretchr/testify/assert
clean:
-rm -f ${TEST_REPORT}
-rm -f ${VET_REPORT}
-rm -fr ${BINDIR}