-
Notifications
You must be signed in to change notification settings - Fork 63
/
makefile
228 lines (175 loc) · 6.76 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#
# ^ _ ____ ___ ^ _
# / \ _ _| |_ ___ / ___|/ _ \ / \ | |
# / _ \| | | | __/ _ \| |_ _| | | |/ _ \ | |
# / ___ \ |_| | || (_) | |_| | |_| / ___ \| |___
# /_/ \_\__,_|\__\___/ \____|\___/_/ \_\_____|
#
# Usage: make [command]
#
# ---------------------------------------------------------------------------
# The following commands can be run anywhere.
# ---------------------------------------------------------------------------
#
# help Show this information.
.PHONY: help
help:
cat makefile | grep -oP "^# \K(.*)"
# clean Remove (!) all untracked and ignored files.
.PHONY: clean
clean:
git clean -xdff
#
# ---------------------------------------------------------------------------
# The following commands must be run OUTSIDE the development environment.
# ---------------------------------------------------------------------------
#
# docker-base Builds the development base image from scratch.
.PHONY: docker
docker:
docker build . -t autogoal/autogoal:core -f dockerfiles/core/dockerfile --no-cache
# docker-contrib Builds the development image with target contrib from scratch.
.PHONY: docker-contrib
docker-contrib:
docker build . -t autogoal/autogoal:$(CONTRIB) -f dockerfiles/development/dockerfile --build-arg extras="common $(CONTRIB) remote" --no-cache
# docker-sklearn Builds the development image with sklearn and streamlit contrib from scratch. Includes autogoal-remote and autogoal-contrib.
.PHONY: docker-streamlit-demo
docker-streamlit-demo:
docker build . -t autogoal/autogoal:streamlit-demo -f dockerfiles/demo/dockerfile --no-cache
# docker-sklearn Builds the development image with sklearn contrib from scratch.
.PHONY: docker-sklearn
docker-sklearn:
make docker-contrib CONTRIB=sklearn
# docker-sklearn Builds the development image with nltk contrib from scratch.
.PHONY: docker-nltk
docker-nltk:
make docker-contrib CONTRIB=nltk
# pull Pull the development image.
.PHONY: pull
pull:
docker pull autogoal/autogoal:latest
# pull-safe Pull the development image using docker.uclv.cu.
.PHONY: pull-safe
pull-safe:
docker pull docker.uclv.cu/autogoal/autogoal:latest
docker tag docker.uclv.cu/autogoal/autogoal:latest autogoal/autogoal:latest
# push Push the development image to Docker Hub.
.PHONY: push
push:
docker push autogoal/autogoal:latest
# shell Opens a shell in the development image.
.PHONY: shell
shell:
docker-compose run --service-ports autogoal bash
.PHONY: streamlit-demo
streamlit-demo:
docker run -p 8500:8501 autogoal/autogoal:streamlit-demo
# container Creates the base development container.
SERVICE=autogoal-core
.PHONY: container
container:
docker-compose run --service-ports --name=$(SERVICE) $(SERVICE)
# container-sklearn Run the development image with sklearn.
.PHONY: container-sklearn
container-sklearn:
make container SERVICE=autogoal-sklearn
# dev-nltk Run the development image with nltk.
.PHONY: container-nltk
container-nltk:
make container SERVICE=autogoal-nltk
# container-full Run the development image with all contribs installed.
.PHONY: container-full
container-full:
make container SERVICE=autogoal-full
# mkdocs Run the docs server in the development image.
.PHONY: mkdocs
mkdocs:
docker-compose run autogoal mkdocs serve -a 0.0.0.0:8000
# test-ci Test only the core code in a newly built image.
.PHONY: test-ci
test-ci:
docker build -t autogoal:basic -f tests/basic.dockerfile .
#
# ---------------------------------------------------------------------------
# The following commands must be run INSIDE the development environment.
# ---------------------------------------------------------------------------
#
.PHONY: ensure-dev
ensure-dev:
echo ${BUILD_ENVIRONMENT} | grep "development" >> /dev/null
.PHONY: docs-dev
docs-dev:
python3 -m illiterate autogoal/autogoal autogoal/docs/api
python3 -m illiterate autogoal/tests/examples autogoal/docs/examples
python3 -m illiterate autogoal/tests/guide autogoal/docs/guide
cp Readme.md autogoal/docs/index.md
# python3 -m typer_cli autogoal/autogoal/__main__.py utils autogoal/docs > autogoal/docs/cli-api.md
# docs Compile and publish the documentation to Github.
.PHONY: docs
docs: ensure-dev docs-dev
mkdocs build
# gh-deploy Deploy docs to Github Pages
.PHONY: gh-deploy
gh-deploy: ensure-dev docs-dev
git remote add pages [email protected]:autogoal/autogoal.github.io || echo "remote exists"
mkdocs gh-deploy -r pages -b master --force
# format Format all source code inplace using `black`.
.PHONY: format
format: ensure-dev
(git status | grep "nothing to commit") && sudo black autogoal/ tests/ || echo "(!) REFUSING TO REFORMAT WITH UNCOMMITED CHANGES" && exit
git status
# anim Make CLI animations
.PHONY: anim
anim:
termtosvg -c "bash docs/shell/autogoal_cli.sh" docs/shell/autogoal_cli.svg -g 80x20 -m 100 -t window_frame_powershell
# env Setup the development environment.
.PHONY: env
env: ensure-dev
curl -sSL https://install.python-poetry.org | python3 -
ln -s ${HOME}/.local/share/pypoetry /usr/bin/poetry
poetry config virtualenvs.create false
# install Install all the development dependencies.
.PHONY: install
install: ensure-dev
poetry install
#
# ---------------------------------------------------------------------------
# The following commands are for remote communication between enviroments.
# ---------------------------------------------------------------------------
#
.PHONY: host-ns
host-ns: ensure-dev
pyro5-ns
#
# ---------------------------------------------------------------------------
# The following commands are for testing in the development enviroment.
# ---------------------------------------------------------------------------
#
# test-core Run the core unit tests (not contrib).
.PHONY: test-core
test-core: ensure-dev
pytest autogoal/tests/core
# test-contrib Run the contrib unit tests.
.PHONY: test-contrib
test-contrib: ensure-dev
bash scripts/run_all_contrib_tests.sh
# test-specific-contrib Run any specific contrib unit tests.
test-specific-contrib:
bash scripts/run_specific_contrib_tests.sh $(CONTRIB)
# test-sklearn Run the sklearn contrib unit tests.
.PHONY: test-sklearn
test-sklearn:
make test-contrib CONTRIB=sklearn
# test-nltk Run the nltk contrib unit tests.
.PHONY: test-nltk
test-nltk:
make test-contrib CONTRIB=nltk
# test-full Run all unit tests including the (very) slow ones.
.PHONY: test-full
test-full: ensure-dev test-contrib
python -m pytest autogoal tests/core tests/contrib --ignore=autogoal/datasets --ignore=autogoal/experimental -v
# cov Run the coverage analysis.
.PHONY: cov
cov: ensure-dev
python -m codecov
#