forked from mendix/cf-mendix-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
108 lines (87 loc) · 2.95 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
PROJECT_NAME ?= cf-mendix-buildpack
PREFIX = $(shell p='$(TEST_PREFIX)'; echo "$${p:-test}")
TEST_FILES ?= tests/integration/test_*.py
VERSION ?= $(shell git tag --list --sort=-version:refname "v*" | head -n 1)
COMMIT ?= $(shell git rev-parse --short HEAD)
PIP_TOOLS_VERSION ?= 7.4.1
PIP_VERSION ?= 24.1.2
PYTHON_PLATFORM ?= manylinux2014_x86_64
PYTHON_VERSION ?= 310
.PHONY: vendor
vendor: create_build_dirs copy_vendored_dependencies download_wheels
.PHONY: copy_vendored_dependencies
copy_vendored_dependencies:
cp -rf vendor build/
.PHONY: list_external_dependencies
list_external_dependencies:
@python3 buildpack/util.py list-external-dependencies
.PHONY: generate_software_bom
generate_software_bom:
@python3 buildpack/util.py generate-software-bom
.PHONY: download_wheels
download_wheels: requirements
rm -rf build/vendor/wheels
mkdir -p build/vendor/wheels
pip3 download -d build/vendor/wheels/ --only-binary :all: pip==${PIP_VERSION} setuptools setuptools-rust wheel
pip3 download -d build/vendor/wheels/ --no-deps --platform ${PYTHON_PLATFORM} --python-version ${PYTHON_VERSION} -r requirements.txt
.PHONY: create_build_dirs
create_build_dirs:
mkdir -p build
mkdir -p dist
mkdir -p vendor
.PHONY: build
build: create_build_dirs fixup vendor write_version write_commit
# git archive -o source.tar HEAD
git ls-files | tar Tcf - source.tar
tar xf source.tar -C build/ --exclude=.commit --exclude=VERSION
rm source.tar
cd build && rm -rf .github/ .gitignore .pylintrc .travis.yml* Makefile *.in tests/ dev/
cd build && zip -r -9 ../dist/${PROJECT_NAME}.zip .
.PHONY: install_piptools
install_piptools:
pip3 install --upgrade pip==${PIP_VERSION} setuptools wheel
pip3 install pip-tools==$(PIP_TOOLS_VERSION)
.PHONY: install_requirements
install_requirements: install_piptools requirements
pip-sync requirements-all.txt
.PHONY: requirements
requirements: install_piptools
pip-compile --strip-extras --resolver=backtracking requirements*.in -o requirements-all.txt
pip-compile --strip-extras --resolver=backtracking requirements.in
.PHONY: write_version
write_version:
echo ${VERSION} > build/VERSION
.PHONY: write_commit
write_commit:
echo ${COMMIT} > build/.commit
.PHONY: clean
clean:
rm -f source.tar
rm -rf build/ dist/
rm -rf .coverage
rm -rf .pytest_cache
rm -rf .mypy_cache
rm -rf buildpack.egg-info
rm -rf pip-wheel-metadata
rm -f *.mda *.mpk
find . -regex ".*__pycache__.*" -delete
find . -regex "*.py[co]" -delete
.PHONY: fixup
fixup:
chmod -R +r *
chmod +x bin/*
.PHONY: test_unit
test_unit:
pytest -vvv --capture=no --durations=0 --color=no tests/unit/test_*.py
.PHONY: test_integration
test_integration:
pytest -vvv --capture=no --timeout=3600 --color=no ${TEST_FILES}
.PHONY: test
test: test_unit test_integration
.PHONY: format
format:
ruff check buildpack lib/m2ee/* tests/*/ --fix-only --show-fixes
.PHONY: lint
lint:
ruff check buildpack lib/m2ee/* tests/*/ --output-format=full
pylint --disable=W,R,C buildpack lib/m2ee/* tests/*/