-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (31 loc) · 791 Bytes
/
Makefile
File metadata and controls
38 lines (31 loc) · 791 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
GITHUB_PAGES_BRANCH=gh-pages
BASEDIR=$(CURDIR)
OUTPUTDIR=$(BASEDIR)/output
.PHONY: available
available:
pip install -r requirements/base.txt
python available.py
.PHONY: generate
generate:
pip install -r requirements/base.txt
python performancepage.py
.PHONY: generate_dev
generate_dev:
python performancepage.py --dev
.PHONY: watch
watch:
python watch.py
.PHONY: publish
publish:
pip install -r requirements/base.txt
python performancepage.py
ghp-import -m "Generate Performance page" -b $(GITHUB_PAGES_BRANCH) $(OUTPUTDIR)
git push origin $(GITHUB_PAGES_BRANCH)
.PHONY: publish_travis
publish_travis:
pip install -r requirements/base.txt
python performancepage.py
ghp-import -m "Generate Performance page" -b $(GITHUB_PAGES_BRANCH) $(OUTPUTDIR)
.PHONY: test
test:
pass