-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
65 lines (56 loc) · 1.61 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
up: run-build-docker
run-build-docker: linux run-docker
clean:
#################################
###### Go clean ######
#################################
@go mod tidy
@go vet ./...
@go fmt ./...
@echo "cleaning up"
build:
#################################
###### Build Binary ######
#################################
@echo
@echo "### Building static release/skelly binary"
go build -o release/skelly github.com/davidvader/skelly/cmd/skelly
.PHONY: build-static-ci
build-static-ci:
#################################
###### Build CI Binary ######
#################################
@echo
@echo "### Building CI static release/skelly binary"
@go build -a \
-ldflags '-s -w -extldflags "-static" ${LD_FLAGS}' \
-o release/skelly \
github.com/davidvader/skelly/cmd/skelly
linux:
#################################
###### Build Linux Binary ######
#################################
@echo
@echo "### Building static release/vela-server binary for linux"
GOOS=linux CGO_ENABLED=0 \
go build -o release/skelly github.com/davidvader/skelly/cmd/skelly
docker:
#################################
###### Build Docker ######
#################################
@echo "### Building Docker image"
docker build .
run:
#################################
###### Run Skelly ######
#################################
@echo
@echo "### Running skelly server"
./release/skelly server
run-docker:
#################################
###### Restart Skelly ######
#################################
@echo
@echo "### Rebuilding and running skelly server"
docker-compose up --build -d