-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
89 lines (71 loc) · 2.15 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
name := browser-sync
image_name := ustwo/$(name)
FLAGS = -v $(PWD)/sandbox:/source \
--name $(name)
DOCKER := docker
DOCKER_TASK := $(DOCKER) run --rm -it
DOCKER_PROC := $(DOCKER) run -d -it
build:
@$(DOCKER) build -t $(image_name) .
.PHONY: build
push:
@$(DOCKER) push $(image_name)
.PHONY: push
shell:
@$(call task,--entrypoint=sh,)
.PHONY: shell
###############################################################################
# Test #
###############################################################################
test-clean:
$(DOCKER) rm -vf $(name) testapp
$(DOCKER) network rm bs
.PHONY: clean
test-proxy: test-app
$(call proc,start --proxy=testapp:8000 --files="*.css")
.PHONY: test-proxy
test-server:
$(DOCKER_PROC) $(FLAGS) \
-p 3000:3000 \
-p 3001:3001 \
$(image_name) \
$1 start --server --files "*.css"
.PHONY: test-server
test-proxy-polling: test-app
@$(call proc,start --config proxy_polling.js)
.PHONY: test-proxy-polling
test-proxy-fsevents: test-app
@$(call proc,start --config proxy_fsevents.js)
.PHONY: test-proxy-fsevents
test-polling:
@$(call proc,start --config polling.js)
.PHONY: test-polling
test-fsevents:
@$(call proc,start --config fsevents.js)
.PHONY: test-fsevents
test-app:
$(DOCKER) network create bs
$(DOCKER_PROC) -p 8000:8000 \
--name testapp \
--net bs \
-v $(PWD)/sandbox:/sandbox \
-w /sandbox \
python:2 python -m SimpleHTTPServer
.PHONY: test-app
###############################################################################
# Helpers #
###############################################################################
define task
$(DOCKER_TASK) $(FLAGS) \
$1 \
$(image_name) \
$2
endef
define proc
$(DOCKER_PROC) $(FLAGS) \
--net bs \
-p 3000:3000 \
-p 3001:3001 \
$(image_name) \
$1
endef