forked from Staffjoy/v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
55 lines (37 loc) · 637 Bytes
/
makefile
File metadata and controls
55 lines (37 loc) · 637 Bytes
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
.PHONY: build clean test stage promote
.DEFAULT_GOAL = build
stage:
bash ci/stage.sh
build:
make clean
bash ci/build.sh
test: build
bash ci/test.sh
promote:
bash ci/promote.sh
clean:
rm -rf vendor/
purge: clean
rm -rf ~/Library/Application\ Support/Unison/
git clean -fdx .
build-fmt:
bash ci/build-fmt.sh
protobuf: build
bash ci/protobuf.sh
#
# jenkins commands
#
jenkins: clean test
jenkins-stage: clean test stage
jenkins-promote: promote
#
# dev commands
#
dev-sync:
bash vagrant/unison.sh
dev-k8s-fix:
bash vagrant/dev-k8s-fix.sh
dev-build: build
bash ci/dev-build.sh
dev:
bash vagrant/dev-watch.sh