forked from TrueCloudLab/frostfs-testcases
013cf8fcc8
Signed-off-by: anastasia prasolova <anastasia@nspcc.ru>
17 lines
637 B
Makefile
17 lines
637 B
Makefile
define VENV_template
|
|
venv.$(1): venv.$(1)/bin/activate venv.$(1)/bin/environment.sh
|
|
|
|
venv.$(1)/bin/activate:
|
|
@echo "Creating $(1) venv in $$@ from $$<"
|
|
virtualenv --python=python3.9 --prompt="($(1))" venv.$(1)
|
|
. venv.$(1)/bin/activate && \
|
|
pip3.9 install -U setuptools==56.0.0 && \
|
|
pip3.9 install -Ur requirements.txt
|
|
@echo "Applying activate script patch"
|
|
patch -R --dry-run -p1 -s -f -d venv.$(1)/bin/ < build_assets/activate.patch || \
|
|
patch -p1 -d venv.$(1)/bin/ < build_assets/activate.patch
|
|
|
|
venv.$(1)/bin/environment.sh: | venv/$(1)/environment.sh
|
|
ln -s ../../venv/$(1)/environment.sh venv.$(1)/bin/environment.sh
|
|
|
|
endef
|