ID: b75995c94a9f9c8c3d06b94719ebdc0447bafbac
35 lines
—
682B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/mozilla/normandy.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/mozilla-normandy
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.9:
export PYENV_VERSION=3.9
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
v1.147.0: check_env_vars venv-3.9 repository
source venv/bin/activate
export PYENV_VERSION=3.9
cd repository
git checkout tags/$@
poetry install
poetry run pip install .[docs]
cd docs
poetry run make clean
poetry run make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|