summaryrefslogtreecommitdiff
path: root/share/spack/qa/run-doc-tests
blob: 67701167aaaba85cea6df5e529754a463d76277d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
#
# Description:
#     Builds Spack documentation and checks for
#     possible syntax errors. Treats warnings as
#     fatal errors.
#
# Usage:
#     run-doc-tests
#
# Notes:
#     Requires sphinx, git, mercurial, and subversion.
#

QA_DIR="$(dirname "$0")"
SPACK_ROOT="$QA_DIR/../../.."
DOC_DIR="$SPACK_ROOT/lib/spack/docs"

# Array of dependencies
deps=(
    sphinx-apidoc
    sphinx-build
    dot
    git
    hg
    svn
)

# Check for dependencies
"$QA_DIR/check_dependencies" "${deps[@]}" || exit 1

# Add Spack to the PATH.
export PATH="$SPACK_ROOT/bin:$PATH"

# Move to documentation directory
# Allows script to be run from anywhere
cd "$DOC_DIR"

# Cleanup temporary files upon exit or when script is killed
trap 'make clean --silent' EXIT SIGINT SIGTERM

# Treat warnings as fatal errors
make SPHINXOPTS=-W