ID: 34071795b6c34514d0e836f5276a7f58ee248f5c
36 lines
—
780B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/mozilla/treeherder.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/mozilla-treeherder
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.11:
export PYENV_VERSION=3.11
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
# This repo doesn't use tags for releases, therefore we checkout specific commits.
# The date is the commit's date.
2024-05-29-96e7651f: check_env_vars venv-3.11 repository
# Extract commit hash
commit_hash=$@
commit_hash=$${commit_hash:11}
source venv/bin/activate
cd repository
git checkout $${commit_hash}
pip install .[docs]
mkdir --parents "${OUTPUT_PATH}"
mkdocs build --site-dir "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|