forked from ricklamers/gpt-code-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (32 loc) · 1.19 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
.PHONY: all compile_frontend bundle_pypi upload_pypi increment_version release check_env_var
all: check_env_var build upload_pypi
build: check_env_var compile_frontend bundle_pypi
increment_version:
@VERSION=$$(grep -e "^\s*version='[^']*'" setup.py | cut -d "'" -f 2) && \
MAJOR=$$(echo $$VERSION | cut -d. -f1) && \
MINOR=$$(echo $$VERSION | cut -d. -f2) && \
PATCH=$$(echo $$VERSION | cut -d. -f3) && \
NEW_PATCH=$$((PATCH + 1)) && \
NEW_VERSION="$$MAJOR.$$MINOR.$$NEW_PATCH" && \
sed -i.bak "s/version='[^']*'/version='$$NEW_VERSION'/" setup.py && \
rm setup.py.bak && \
echo "Updated version to $$NEW_VERSION"
release:
bash scripts/create_release.sh
compile_frontend:
cd frontend && \
npm install && \
VITE_APP_VERSION=$$(grep -e "^\s*version='[^']*'" ../setup.py | cut -d "'" -f 2) npm run build && \
find ../gpt_code_ui/webapp/static -mindepth 1 ! -name '.gitignore' -delete && \
rsync -av dist/ ../gpt_code_ui/webapp/static
bundle_pypi:
rm -rf dist build && \
python3 setup.py sdist bdist_wheel
upload_pypi:
twine upload dist/*
check_env_var:
ifeq ($(VITE_WEB_ADDRESS),)
@echo "VITE_WEB_ADDRESS not set, proceeding..."
else
$(error "VITE_WEB_ADDRESS is set, aborting...")
endif