-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Makefile
97 lines (82 loc) · 2.27 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
90
91
92
93
94
95
96
97
CONDA_ENV=ols-website
SHELL=bash
ifeq ($(UNAME),Darwin)
ENV_FILE=environment-osx.yml
else
ENV_FILE=environment.yml
endif
CONDA = $(shell which conda)
CONDA_ENV_DIR=$(shell dirname $(dir $(CONDA)))
ifeq ($(CONDA),)
CONDA=${HOME}/miniconda3/bin/conda
endif
default: help
clean: ## cleanup the project
@rm -rf _site
@rm -rf .sass-cache
@rm -rf .bundle
@rm -rf vendor
.PHONY: clean
create-env: ## create conda environment
if ${CONDA} env list | grep '^${CONDA_ENV}'; then \
${CONDA} env update -f ${ENV_FILE}; \
else \
${CONDA} env create -f ${ENV_FILE}; \
fi
.PHONY: create-env
ACTIVATE_ENV = source $(dir ${CONDA})activate ${CONDA_ENV}
install: clean ## install dependencies
$(ACTIVATE_ENV) && \
gem update --system && \
gem install bundler && \
bundle install
.PHONY: install
bundle-install: clean ## install gems if Ruby is already present (e.g. on gitpod.io)
bundle install
.PHONE: bundle-install
serve: ## run a local server
$(ACTIVATE_ENV) && \
jekyll serve
.PHONY: serve
serve-gitpod: ## run a server on a gitpod.io environment
bundle exec jekyll serve
.PHONY: serve-gitpod
build: clean ## build files but do not run a server (You can specify FLAGS= to pass additional flags to Jekyll)
$(ACTIVATE_ENV) && \
bundle exec jekyll build --strict_front_matter
.PHONY: build
check-html: build ## validate HTML
$(ACTIVATE_ENV) && \
htmlproofer \
--assume-extension \
--http-status-ignore 405,503,999 \
--url-ignore "/.*localhost.*/","/.*gitter\.im.*/" \
--allow-hash-href \
--empty_alt_ignore \
--disable-external \
./_site
.PHONY: check-html
check-links: build ## check all links
$(ACTIVATE_ENV) && \
htmlproofer \
--assume-extension \
--allow-hash-href \
--ignore_empty_alt \
--disable-external \
--ignore_status_codes 405,429,503,999 \
--allow_missing_href \
--no-enforce_https \
--no-check-internal-hash \
./_site
.PHONY: check-html
update-schedule: ## update schedule
$(ACTIVATE_ENV) && \
bash bin/update_schedule.sh
.PHONY: build
lint: clean ## lint python script
$(ACTIVATE_ENV) && \
tox -e lint
.PHONY: build
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help