mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-01 21:09:10 -06:00
18 lines
434 B
Bash
Executable File
18 lines
434 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "EXECUTING: Build docs"
|
|
echo
|
|
|
|
cd ${WORKSPACE}
|
|
|
|
. ${WORKSPACE}/pgadmin-venv/bin/activate
|
|
|
|
SPHINX_VER=""
|
|
if [ "${PYTHON_VERSION}" = "2.6" -o "${PYTHON_VERSION}" = "3.3" ]; then
|
|
SPHINX_VER="==1.4.9"
|
|
fi
|
|
|
|
${WORKSPACE}/pgadmin-venv/bin/pip install Sphinx${SPHINX_VER} || { echo 'ERROR: Failed to install Sphinx to build the docs.' ; exit 1; }
|
|
|
|
make docs || { echo 'ERROR: Failed to build the documentation.' ; exit 1; }
|