-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
64 lines (45 loc) · 1.85 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
SHELL:=/bin/bash
PATH:=node_modules/.bin:node_modules/hubot/node_modules/.bin:$(PATH)
ENVFILE:=environment
COFFEE:=node_modules/hubot/node_modules/.bin/coffee
# Standard Variables
SYSCONFDIR=$(PREFIX)/etc
VARDIR=$(PREFIX)/var
INITDIR=$(SYSCONFDIR)/systemd/system
INSTALL=/bin/install -p
build:
docker build -t msndevopsbot .
docker:
docker run -v $(shell pwd):/var/lib/hubot -p 8000:8000 -it msndevopsbot bin/hubot
slack:
docker run -v $(shell pwd):/var/lib/hubot -p 8000:8000 -it msndevopsbot bin/hubot --adapter slack
dockershell:
docker run -v $(shell pwd):/var/lib/hubot -p 8000:8000 -it msndevopsbot /bin/bash
all: lint test
debuginfo:
node -v
npm version
test: node_modules syntax unit
# If you have a secrets file, load it into your shell on your own
# Currently, a secrets file isn't needed for tests.
unit:
PATH=$(PATH) . $(ENVFILE) > /dev/null && test -d $${HUBOT_GIT_HOME} || HUBOT_GIT_HOME=$(shell pwd) && mocha --compilers "coffee:coffee-script/register" --require coffee-script/register test/*.coffee
syntax: node_modules
PATH=$(PATH) . $(ENVFILE) > /dev/null && $(COFFEE) node_modules/hubot/bin/hubot -t
node_modules:
test -d node_modules || npm install
lint: node_modules
PATH=$(PATH) beautify-lint scripts/*.js
# Warning this will modify source code. Don't run this in CI. It's here as a helper.
pretty: node_modules
PATH=$(PATH) beautify-rewrite scripts/*.js
dev: node_modules
# If you have a secrets file, load it into your shell on your own
PATH=$(PATH) . $(ENVFILE) > /dev/null && HUBOT_LOG_LEVEL=debug $(COFFEE) node_modules/hubot/bin/hubot --alias "!"
production-modules:
npm prune && npm install
.PHONY: list
list:
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
clean:
clear