forked from elyra-ai/elyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
133 lines (105 loc) · 4.08 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
#
# Copyright 2018-2020 IBM Corporation
#
# 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 clean yarn-install test-dependencies lint-server lint-ui lint lerna-build npm-packages bdist install
.PHONY: watch test-server test-ui test-ui-debug test docs-dependencies docs install-backend docker-image
SHELL:=/bin/bash
VERSION:=0.0.1
TAG:=dev
IMAGE=elyra/elyra:$(TAG)
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}'
clean: ## Make a clean source tree
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 *.tgz)
rm -rf $$(find . -name tsconfig.tsbuildinfo)
rm -rf $$(find . -name *.lock)
rm -rf $$(find . -name package-lock.json)
rm -rf $$(find . -name .pytest_cache)
# Prepares Elyra for build/packaging/installation
yarn-install:
rm -f yarn.lock package-lock.json
yarn cache clean
yarn
test-dependencies:
@pip install -q -r test_requirements.txt
lint-server: test-dependencies
flake8 elyra
lint-ui:
yarn run prettier
yarn run eslint
lint: lint-ui lint-server ## Run linters
lerna-build: yarn-install
export PATH=$$(pwd)/node_modules/.bin:$$PATH && lerna run build
npm-packages: lerna-build
mkdir -p dist
$(call PACKAGE_LAB_EXTENSION,application)
$(call PACKAGE_LAB_EXTENSION,code-snippet)
$(call PACKAGE_LAB_EXTENSION,pipeline-editor)
$(call PACKAGE_LAB_EXTENSION,python-runner)
cd dist && curl -o jupyterlab-git-0.20.0.tgz $$(npm view @jupyterlab/git@0.20.0 dist.tarball) && cd -
cd dist && curl -o jupyterlab-toc-3.0.0.tgz $$(npm view @jupyterlab/toc@3.0.0 dist.tarball) && cd -
bdist: npm-packages
python setup.py bdist_wheel
install: bdist lint ## Build distribution and install
pip install --upgrade dist/elyra-*-py3-none-any.whl
$(call UNLINK_LAB_EXTENSION,application)
$(call UNLINK_LAB_EXTENSION,code-snippet)
$(call UNLINK_LAB_EXTENSION,pipeline-editor-extension)
$(call UNLINK_LAB_EXTENSION,python-runner-extension)
jupyter lab clean
$(call LINK_LAB_EXTENSION,application)
$(call LINK_LAB_EXTENSION,code-snippet)
$(call LINK_LAB_EXTENSION,pipeline-editor)
$(call LINK_LAB_EXTENSION,python-runner)
jupyter lab build
jupyter serverextension list
jupyter labextension list
watch: ## Watch packages. For use alongside jupyter lab --watch
export PATH=$$(pwd)/node_modules/.bin:$$PATH && lerna run watch --parallel
test-server: lint-server ## Run unit tests
pytest -v elyra
test-ui: lint-ui ## Run frontend tests
npm test
test-ui-debug: lint-ui
npm run test-debug
test: test-server test-ui ## Run all tests
docs-dependencies:
@pip install -q -r docs/requirements.txt
docs: docs-dependencies ## Build docs
make -C docs html
install-backend: ## Build and install backend
python setup.py bdist_wheel --dev
pip install --upgrade dist/elyra-*-py3-none-any.whl
docker-image: ## bdist ## Build docker image
@mkdir -p build/docker
cp etc/docker/Dockerfile build/docker/Dockerfile
cp -r dist/*.whl build/docker/
DOCKER_BUILDKIT=1 docker build -t $(IMAGE) build/docker/ --progress plain
define UNLINK_LAB_EXTENSION
- jupyter labextension unlink --no-build @elyra/$1
endef
define LINK_LAB_EXTENSION
cd packages/$1 && jupyter labextension link --no-build .
endef
define PACKAGE_LAB_EXTENSION
export PATH=$$(pwd)/node_modules/.bin:$$PATH && cd packages/$1 && npm run dist && mv *.tgz ../../dist
endef