-
Notifications
You must be signed in to change notification settings - Fork 138
/
Makefile
180 lines (144 loc) · 5.57 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
.SILENT:
.DEFAULT_GOAL := help
GO ?= go
GOROOT ?= $(shell $(GO) env GOROOT)
GOPATH ?= $(shell $(GO) env GOPATH)
GOBIN ?= $(GOPATH)/bin
GOLINT ?= $(GOBIN)/golint
GOSEC ?= $(GOBIN)/gosec
GOVERALLS ?= $(GOBIN)/goveralls
HUSKYCI-API-BIN ?= huskyci-api-bin
HUSKYCI-CLIENT-BIN ?= huskyci-client-bin
HUSKYCI-CLI-BIN ?= huskyci-cli-bin
COLOR_RESET = \033[0m
COLOR_COMMAND = \033[36m
COLOR_YELLOW = \033[33m
COLOR_GREEN = \033[32m
COLOR_RED = \033[31m
PROJECT := huskyCI
TAG := $(shell git describe --tags --abbrev=0)
DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
COMMIT := $(shell git rev-parse $(TAG))
LDFLAGS := '-X "main.version=$(TAG)" -X "main.commit=$(COMMIT)" -X "main.date=$(DATE)"'
## Builds all project binaries
build-all: build-api build-api-linux build-client build-client-linux build-cli build-cli-linux
## Builds API code into a binary
build-api:
cd api && $(GO) build -ldflags $(LDFLAGS) -o "$(HUSKYCI-API-BIN)" server.go
## Builds API code using linux architecture into a binary
build-api-linux:
cd api && GOOS=linux GOARCH=amd64 $(GO) build -ldflags $(LDFLAGS) -o "$(HUSKYCI-API-BIN)" server.go
## Builds client code into a binary
build-client:
cd client/cmd && $(GO) build -ldflags $(LDFLAGS) -o "$(HUSKYCI-CLIENT-BIN)" main.go
## Builds client code using linux architecture into a binary
build-client-linux:
cd client/cmd && GOOS=linux GOARCH=amd64 $(GO) build -ldflags $(LDFLAGS) -o "$(HUSKYCI-CLIENT-BIN)" main.go
## Builds cli code into a binary
build-cli:
cd cli && $(GO) build -ldflags $(LDFLAGS) -o "$(HUSKYCI-CLI-BIN)" main.go
## Builds cli code using linux architecture into a binary
build-cli-linux:
cd cli && GOOS=linux GOARCH=amd64 $(GO) build -ldflags $(LDFLAGS) -o "$(HUSKYCI-CLI-BIN)" main.go
## Builds all securityTest containers locally with the latest tags
build-containers:
chmod +x deployments/scripts/build-containers.sh
./deployments/scripts/build-containers.sh
## Checks dependencies
check-deps:
cd api && $(GO) mod tidy && $(GO) mod verify
cd cli && $(GO) mod tidy && $(GO) mod verify
cd client && $(GO) mod tidy && $(GO) mod verify
## Runs a security static analysis using Gosec
check-sec:
$(GO) get -u github.com/securego/gosec/cmd/gosec
cd api && $(GOSEC) ./...
cd client && $(GOSEC) ./...
cd cli && $(GOSEC) ./...
## Checks .env file from huskyCI
check-env:
cat .env
## Checks every securityTest version from their container images
check-containers-version:
chmod +x deployments/scripts/check-containers-version.sh
./deployments/scripts/check-containers-version.sh
## Composes huskyCI environment using docker-compose
compose:
docker-compose -f deployments/docker-compose.yml down -v
docker-compose -f deployments/docker-compose.yml up -d --build --force-recreate
## Composes down
compose-down:
docker-compose -f deployments/docker-compose.yml down -v
## Creates certs and sets all config to huskyCI_Docker_API
create-certs:
chmod +x deployments/scripts/run-create-certs.sh
./deployments/scripts/run-create-certs.sh
## Generates a local token to be used in a local environment
# generate-local-token:
# chmod +x deployments/scripts/generate-local-token.sh
# ./deployments/scripts/generate-local-token.sh
## Generates passwords and set them as environment variables
generate-passwords:
chmod +x deployments/scripts/generate-env.sh
./deployments/scripts/generate-env.sh
## Sends coverage report to coveralls
goveralls:
$(GO) get -u github.com/mattn/goveralls
$(GOVERALLS) -coverprofile=c.out -service=circle-ci -repotoken=$COVERALLS_TOKEN
## Prints help message
help:
printf "\n${COLOR_YELLOW}${PROJECT}\n------\n${COLOR_RESET}"
awk '/^[a-zA-Z\-\_0-9\.%]+:/ { \
helpMessage = match(lastLine, /^## (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")); \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
printf "${COLOR_COMMAND}$$ make %s${COLOR_RESET} %s\n", helpCommand, helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST) | sort
printf "\n"
## Installs a development environment using docker-compose
# generate-local-token has removed
install: create-certs compose generate-passwords
## Runs all huskyCI lint
lint:
$(GO) install -u golang.org/x/lint/golint
$(GOLINT) ./...
## Push securityTest containers to hub.docker
push-containers:
chmod +x deployments/scripts/push-containers.sh
./deployments/scripts/push-containers.sh
## Restarts only huskyCI_API container
restart-huskyci-api:
chmod +x deployments/scripts/restart-huskyci-api.sh
./deployments/scripts/restart-huskyci-api.sh
## Runs huskyci-client
run-cli: build-cli
./cli/"$(HUSKYCI-CLI-BIN)" run
## Run huskyci-client compiling it in Linux arch
run-cli-linux: build-cli-linux
./cli/"$(HUSKYCI-CLI-BIN)" run
## Runs huskyci-client
run-client: build-client
./client/cmd/"$(HUSKYCI-CLIENT-BIN)"
## Runs huskyci-client with JSON output
run-client-json: build-client
./client/cmd/"$(HUSKYCI-CLIENT-BIN)" JSON
## Run huskyci-client compiling it in Linux arch
run-client-linux: build-client-linux
./client/cmd/"$(HUSKYCI-CLIENT-BIN)"
## Run huskyci-client compiling it in Linux arch with JSON output
run-client-linux-json: build-client-linux
./client/cmd/"$(HUSKYCI-CLIENT-BIN)" JSON
## Performs all unit tests using ginkgo
test:
cd api && $(GO) test -coverprofile=c.out ./...
cd api && $(GO) tool cover -func=c.out
cd api && $(GO) tool cover -html=c.out -o coverage.html
cd client && $(GO) test -coverprofile=d.out ./...
cd client && $(GO) tool cover -func=d.out
cd cli && $(GO) test -coverprofile=e.out ./...
cd cli && $(GO) tool cover -func=e.out
## Builds and push securityTest containers with the latest tags
update-containers: build-containers push-containers