ID: 0fabe31fdf8434888ae2342282df153b7fdaa59f
37 lines
—
779B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://gitlab.com/amdis/amdis.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/amdis
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.9:
export PYENV_VERSION=3.9
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-01-23-0e3fed6d: check_env_vars venv-3.9 repository
# Extract commit hash
commit_hash=$@
commit_hash=$${commit_hash:11}
source venv/bin/activate
cd repository
git checkout $${commit_hash}
pip install -r requirements.txt
mkdocs build
mkdir --parents "${OUTPUT_PATH}"
cp --recursive site "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|