forked from elyra-ai/elyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
313 lines (256 loc) · 10.9 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#
# Copyright 2018-2022 Elyra Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
.PHONY: help purge install-all install-examples install uninstall clean test-dependencies lint-server lint-ui lint yarn-install eslint-ui eslint-check-ui prettier-ui prettier-check-ui flake lint-server-dependencies dev-link dev-unlink
.PHONY: build-ui build-server install-server watch install-extensions build-jupyterlab install-server-package check-install only-install-server
.PHONY: test-server test-ui test-integration test-integration-debug test docs-dependencies docs dist-ui release pytest
.PHONY: validate-runtime-images elyra-image publish-elyra-image kf-notebook-image
.PHONY: publish-kf-notebook-image container-images publish-container-images
.PHONY: build-dependencies install-gitlab-dependency
SHELL:=/bin/bash
TAG:=dev
ELYRA_IMAGE=elyra/elyra:$(TAG)
KF_NOTEBOOK_IMAGE=elyra/kf-notebook:$(TAG)
# Contains the set of commands required to be used by elyra
REQUIRED_RUNTIME_IMAGE_COMMANDS?="curl python3"
REMOVE_RUNTIME_IMAGE?=0 # Invoke `make REMOVE_RUNTIME_IMAGE=1 validate-runtime-images` to have images removed after validation
UPGRADE_STRATEGY?=only-if-needed
help:
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
purge:
rm -rf build *.egg-info yarn-error.log
rm -rf node_modules lib dist
rm -rf $$(find packages -name node_modules -type d -maxdepth 2)
rm -rf $$(find packages -name dist -type d)
rm -rf $$(find packages -name lib -type d)
rm -rf $$(find . -name __pycache__ -type d)
rm -rf $$(find . -name tsconfig.tsbuildinfo)
rm -rf $$(find . -name package-lock.json)
rm -rf $$(find . -name .pytest_cache)
rm -rf $(yarn cache dir)
# NOTE: We can't use "lerna run lab:uninstall" because we may have deleted node_modules.
uninstall:
$(call UNLINK_LAB_EXTENSION,@elyra/services)
$(call UNLINK_LAB_EXTENSION,@elyra/ui-components)
$(call UNLINK_LAB_EXTENSION,@elyra/metadata-common)
$(call UNLINK_LAB_EXTENSION,@elyra/script-editor)
$(call UNINSTALL_LAB_EXTENSION,@elyra/theme-extension)
$(call UNINSTALL_LAB_EXTENSION,@elyra/code-snippet-extension)
$(call UNINSTALL_LAB_EXTENSION,@elyra/metadata-extension)
$(call UNINSTALL_LAB_EXTENSION,@elyra/pipeline-editor-extension)
$(call UNINSTALL_LAB_EXTENSION,@elyra/python-editor-extension)
$(call UNINSTALL_LAB_EXTENSION,@elyra/r-editor-extension)
- jupyter labextension unlink @elyra/pipeline-services
- jupyter labextension unlink @elyra/pipeline-editor
pip uninstall -y jupyterlab-git
pip uninstall -y jupyter-lsp
- jupyter labextension uninstall @krassowski/jupyterlab-lsp
pip uninstall -y jupyterlab-lsp
pip uninstall -y python-lsp-server
pip uninstall -y jupyter-resource-usage
- jupyter labextension uninstall @jupyter-server/resource-usage
pip uninstall -y elyra
- jupyter lab clean
# remove Kubeflow Pipelines example components
- pip uninstall -y elyra-examples-kfp-catalog
# remove Apache Airflow example components
- pip uninstall -y elyra-examples-airflow-catalog
# remove GitLab dependency
- pip uninstall -y python-gitlab
clean: purge uninstall ## Make a clean source tree and uninstall extensions
test-dependencies:
python -m pip install --upgrade pip
@pip install -q -r test_requirements.txt
build-dependencies:
python -m pip install --upgrade pip
@pip install -q -r build_requirements.txt
lint-server: build-dependencies
flake8 elyra
prettier-check-ui:
yarn prettier:check
eslint-check-ui:
yarn eslint:check --max-warnings=0
prettier-ui:
yarn prettier
eslint-ui:
yarn eslint --max-warnings=0
lint-ui: prettier-ui eslint-ui
lint: lint-ui prettier-ui lint-server ## Run linters
dev-link:
yarn link @elyra/pipeline-services
yarn link @elyra/pipeline-editor
cd node_modules/@elyra/pipeline-editor && jupyter labextension link --no-build .
cd node_modules/@elyra/pipeline-services && jupyter labextension link --no-build .
dev-unlink:
yarn unlink @elyra/pipeline-services
yarn unlink @elyra/pipeline-editor
jupyter labextension uninstall @elyra/pipeline-services
jupyter labextension uninstall @elyra/pipeline-editor
yarn install --force
yarn-install:
yarn install
build-ui: # Build packages
yarn lerna run build --stream
build-server: # Build backend
python setup.py bdist_wheel sdist
build: build-server build-ui
install-ui: yarn-install lint-ui build-ui install-extensions build-jupyterlab # Install packages
install-extensions:
yarn lerna run lab:install --stream
build-jupyterlab:
jupyter lab build
prepare-server:
pip install --upgrade pip wheel
only-install-server: prepare-server build-server install-server-package
install-server: lint-server only-install-server ## Build and install backend only
install-server-package:
pip install --upgrade --upgrade-strategy $(UPGRADE_STRATEGY) --use-deprecated=legacy-resolver "$(shell find dist -name "elyra-*-py3-none-any.whl")[kfp-tekton]"
install: install-server install-ui check-install ## Build and install
install-all: install install-examples install-gitlab-dependency ## Build and install, including examples
install-examples: ## Install example pipeline components
# install Kubeflow Pipelines example components
# -> https://github.com/elyra-ai/examples/tree/master/component-catalog-connectors/kfp-example-components-connector
- pip install --upgrade elyra-examples-kfp-catalog
# install Apache Airflow example components
# -> https://github.com/elyra-ai/examples/tree/master/component-catalog-connectors/airflow-example-components-connector
- pip install --upgrade elyra-examples-airflow-catalog
install-gitlab-dependency:
# install GitLab support for Airflow
- pip install --upgrade python-gitlab
check-install:
jupyter serverextension list
jupyter server extension list
jupyter labextension list
watch: ## Watch packages. For use alongside jupyter lab --watch
yarn lerna run watch --parallel
pytest:
pytest -v elyra
test-server: install-server test-dependencies pytest # Run unit tests
test-ui: lint-ui test-ui-unit test-integration # Run frontend tests
test-ui-unit: # Run frontend jest unit tests
yarn test:unit
test-integration: # Run frontend cypress integration tests
yarn test:integration
test-integration-debug: # Open cypress integration test debugger
yarn test:integration:debug
test: test-server test-ui ## Run all tests (backend, frontend and cypress integration tests)
docs-dependencies:
@pip install -q -r docs/requirements.txt
docs: docs-dependencies ## Build docs
make -C docs clean html
dist-ui: yarn-install build-ui
mkdir -p dist
$(call PACKAGE_LAB_EXTENSION,theme)
$(call PACKAGE_LAB_EXTENSION,code-snippet)
$(call PACKAGE_LAB_EXTENSION,metadata)
$(call PACKAGE_LAB_EXTENSION,pipeline-editor)
$(call PACKAGE_LAB_EXTENSION,python-editor)
$(call PACKAGE_LAB_EXTENSION,r-editor)
release: dist-ui build-server ## Build wheel file for release
elyra-image: # Build Elyra stand-alone container image
@mkdir -p build/docker
cp etc/docker/elyra/Dockerfile build/docker/Dockerfile
cp etc/docker/elyra/start-elyra.sh build/docker/start-elyra.sh
@mkdir -p build/docker/elyra
if [ "$(TAG)" == "dev" ]; then \
cp etc/docker/elyra/Dockerfile.dev build/docker/Dockerfile; \
git -C ./ ls-files --exclude-standard -oi --directory > .git/ignores.tmp; \
rsync -ah --progress --delete --delete-excluded ./ build/docker/elyra/ \
--exclude ".git" \
--exclude ".github" \
--exclude-from ".git/ignores.tmp"; \
rm -f .git/ignores.tmp; \
fi
docker buildx build \
--progress=plain \
--output=type=docker \
--tag docker.io/$(ELYRA_IMAGE) \
--tag quay.io/$(ELYRA_IMAGE) \
--build-arg TAG=$(TAG) \
build/docker/;
publish-elyra-image: elyra-image # Publish Elyra stand-alone container image
# this is a privileged operation; a `docker login` might be required
docker push docker.io/$(ELYRA_IMAGE)
docker push quay.io/$(ELYRA_IMAGE)
kf-notebook-image: # Build elyra image for use with Kubeflow Notebook Server
@mkdir -p build/docker-kubeflow
cp etc/docker/kubeflow/Dockerfile build/docker-kubeflow/Dockerfile
@mkdir -p build/docker-kubeflow/elyra
if [ "$(TAG)" == "dev" ]; then \
cp etc/docker/kubeflow/Dockerfile.dev build/docker-kubeflow/Dockerfile; \
git -C ./ ls-files --exclude-standard -oi --directory > .git/ignores.tmp; \
rsync -ah --progress --delete --delete-excluded ./ build/docker-kubeflow/elyra/ \
--exclude ".git" \
--exclude ".github" \
--exclude-from ".git/ignores.tmp"; \
rm -f .git/ignores.tmp; \
fi
docker buildx build \
--progress=plain \
--output=type=docker \
--tag docker.io/$(KF_NOTEBOOK_IMAGE) \
--tag quay.io/$(KF_NOTEBOOK_IMAGE) \
--build-arg TAG=$(TAG) \
build/docker-kubeflow;
publish-kf-notebook-image: kf-notebook-image # Publish elyra image for use with Kubeflow Notebook Server
# this is a privileged operation; a `docker login` might be required
docker push docker.io/$(KF_NOTEBOOK_IMAGE)
docker push quay.io/$(KF_NOTEBOOK_IMAGE)
container-images: elyra-image kf-notebook-image ## Build all container images
docker images $(ELYRA_IMAGE)
docker images quay.io/$(ELYRA_IMAGE)
docker images $(KF_NOTEBOOK_IMAGE)
docker images quay.io/$(KF_NOTEBOOK_IMAGE)
publish-container-images: publish-elyra-image publish-kf-notebook-image ## Publish all container images
validate-runtime-images: # Validates delivered runtime-images meet minimum criteria
@required_commands=$(REQUIRED_RUNTIME_IMAGE_COMMANDS) ; \
pip install jq ; \
for file in `find etc/config/metadata/runtime-images -name "*.json"` ; do \
image=`cat $$file | jq -e -r '.metadata.image_name'` ; \
if [ $$? -ne 0 ]; then \
echo ERROR: $$file does not define the image_name property ; \
exit 1; \
fi; \
fail=0; \
for cmd in $$required_commands ; do \
echo Checking $$image in $$file for $$cmd... ; \
docker inspect $$image > /dev/null 2>&1 ; \
if [ $$? -ne 0 ]; then \
echo Image $$image is not present, pulling... ; \
fi; \
docker run --rm $$image which $$cmd > /dev/null 2>&1 ; \
if [ $$? -ne 0 ]; then \
echo ERROR: Image $$image did not meet criteria for command: $$cmd ; \
fail=1; \
fi; \
done; \
if [ $(REMOVE_RUNTIME_IMAGE) -eq 1 ]; then \
echo Removing image $$image... ; \
docker rmi $$image > /dev/null ; \
fi; \
if [ $$fail -eq 1 ]; then \
exit 1; \
fi; \
done
define UNLINK_LAB_EXTENSION
- jupyter labextension unlink --no-build $1
endef
define UNINSTALL_LAB_EXTENSION
- jupyter labextension uninstall --no-build $1
endef
define PACKAGE_LAB_EXTENSION
cd packages/$1 && yarn dist && mv *.tgz ../../dist
endef