forked from slok/grafterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
111 lines (89 loc) · 2.68 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
# Name of this service/application
SERVICE_NAME := grafterm
# Path of the go service inside docker
DOCKER_GO_SERVICE_PATH := /src
# Shell to use for running scripts
SHELL := $(shell which bash)
# Get OS
OSTYPE := $(shell uname)
# Get docker path or an empty string
DOCKER := $(shell command -v docker)
# Get the main unix group for the user running make (to be used by docker-compose later)
GID := $(shell id -g)
# Get the unix user id for the user running make (to be used by docker-compose later)
UID := $(shell id -u)
# Version from Git.
VERSION=$(shell git describe --tags --always)
# cmds
UNIT_TEST_CMD := ./hack/scripts/unit-test.sh
INTEGRATION_TEST_CMD := ./hack/scripts/integration-test.sh
MOCKS_CMD := ./hack/scripts/mockgen.sh
DOCKER_RUN_CMD := docker run --env ostype=$(OSTYPE) -v ${PWD}:$(DOCKER_GO_SERVICE_PATH) --rm -it $(SERVICE_NAME)
BUILD_BINARY_CMD := VERSION=${VERSION} ./hack/scripts/build.sh
BUILD_IMAGE_CMD := IMAGE_VERSION=${VERSION} ./hack/scripts/build-image.sh
CI_RELEASE_CMD := ./hack/scripts/ci-release.sh
DEPS_CMD := GO111MODULE=on go mod tidy && GO111MODULE=on go mod vendor
# The default action of this Makefile is to build the development docker image
.PHONY: default
default: build
# Test if the dependencies we need to run this Makefile are installed
.PHONY: deps-development
deps-development:
ifndef DOCKER
@echo "Docker is not available. Please install docker"
@exit 1
endif
ifndef IMAGE
@echo "Docker Image not available, Building..."
docker build -t $(SERVICE_NAME) \
--build-arg uid=$(UID) \
--build-arg gid=$(GID) \
--build-arg ostype=$(OSTYPE) -f ./docker/dev/Dockerfile .
endif
# Build the development docker image
.PHONY: build
build:
docker build -t $(SERVICE_NAME) \
--build-arg uid=$(UID) \
--build-arg gid=$(GID) \
--build-arg ostype=$(OSTYPE) -f ./docker/dev/Dockerfile .
# Shell the development docker image
.PHONY: build
shell: build
$(DOCKER_RUN_CMD) /bin/bash
# Build production stuff.
build-binary: deps-development
$(DOCKER_RUN_CMD) /bin/sh -c '$(BUILD_BINARY_CMD)'
.PHONY: build-image
build-image:
$(BUILD_IMAGE_CMD)
# Test stuff in dev
.PHONY: unit-test
unit-test: build
$(DOCKER_RUN_CMD) /bin/sh -c '$(UNIT_TEST_CMD)'
.PHONY: integration-test
integration-test: build
$(DOCKER_RUN_CMD) /bin/sh -c '$(INTEGRATION_TEST_CMD)'
.PHONY: test
test: integration-test
# Test stuff in ci
.PHONY: ci-unit-test
ci-unit-test:
$(UNIT_TEST_CMD)
.PHONY: ci-integration-test
ci-integration-test:
$(INTEGRATION_TEST_CMD)
.PHONY: ci
ci: ci-integration-test
.PHONY: ci-release
ci-release:
$(CI_RELEASE_CMD)
# Mocks stuff in dev
.PHONY: mocks
mocks: build
#$(DOCKER_RUN_CMD) /bin/sh -c '$(MOCKS_CMD)'
$(MOCKS_CMD)
# Dependencies stuff.
.PHONY: deps
deps:
$(DEPS_CMD)