-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
106 lines (76 loc) · 2.75 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
98
99
100
101
102
103
104
105
106
.DEFAULT_GOAL := help
define BROWSER_PYSCRIPT
import os, webbrowser, sys
from urllib.request import pathname2url
webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1])))
endef
export BROWSER_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
# determines what "make help" will show
define PRINT_HELP_PYSCRIPT
import re, sys
for line in sys.stdin:
match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)
if match:
target, help = match.groups()
print("%-20s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT
# TODO make more general to use the local matlab version
MATLAB = /usr/local/MATLAB/R2018a/bin/matlab
ARG = -nodisplay -nosplash -nodesktop
################################################################################
# General
.PHONY: help clean clean_demos clean_test update fix_submodule
install:
deno install -Agf -n bids-validator jsr:@bids/validator
pip3 install .[dev]
help: ## Show what this Makefile can do
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
clean: clean_demos clean_doc clean_test ## Remove all the clutter
rm -rf version.txt
clean_demos: ## Remove all the output of the demo
rm -rf demos/*/cfg
rm -rf demos/*/outputs/derivatives
rm -rf demos/*/inputs
rm -rf demos/*/*.zip
rm -rf demos/*/*_report.md
clean_test: ## Remove all the output of the tests
rm *.log
rm -rf coverage_html
update: ## Tries to get the latest version of the current branch from upstream
bash tools/update.sh
fix_submodule: ## Fix any submodules that would not be checked out
git submodule update --init --recursive && git submodule update --recursive
prepare_release:
python tools/citation_cff_maint.py
python tools/add_links_to_changelog.py
python tools/bump_version.py
cd docs && make release
validate_cff: ## Validate the citation file
cffconvert --validate
release: validate_cff prepare_release
################################################################################
# test
test: ## Run tests with coverage
$(MATLAB) $(ARG) -r "run_tests; exit()"
system_test: ## Run system tests
$(MATLAB) $(ARG) -r "cd demos/face_repetition/; test_face_rep; exit()"
$(MATLAB) $(ARG) -r "cd demos/MoAE/; test_moae; exit()"
test_python: ## Run python tests
python -m pytest
coverage: ## use coverage
coverage erase
coverage run --source src -m pytest
coverage report -m
coverage html
################################################################################
# DOCKER
.PHONY: clean_docker Dockerfile_matlab
clean_docker:
rm -f Dockerfile_matlab
build_image: Dockerfile ## Build stable docker image from the main branch
docker build . -f Dockerfile -t cpplab/bidspm:unstable
docker_data:
make -C demos/openneuro data_ds000001
################################################################################