-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate_api_docs.sh
executable file
·71 lines (56 loc) · 2.4 KB
/
generate_api_docs.sh
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env bash
set -e
SCRIPTSDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
ROOT="$( cd "$( dirname "${SCRIPTSDIR}" )" && pwd )"
PHPDOCROOT="${ROOT}/phpdocs"
VERSIONLIST=(${VERSIONLIST[@]:-main})
BRANCHLIST=(${BRANCHLIST[@]:-main})
mkdir -p build
echo "============================================================================"
echo "= Building for the following versions and branches:"
echo "= Versions: ${VERSIONLIST[*]}"
echo "= Branches: ${BRANCHLIST[*]}"
echo "============================================================================"
htmlbranchlist=""
for index in ${!VERSIONLIST[@]}; do
version=${VERSIONLIST[$index]}
moodlebranch=${BRANCHLIST[$index]}
APIDOCDIR="build/${version}"
echo "========================================"
echo "== Generating JavaScript API Documentation for ${version} using branch ${moodlebranch}"
echo "== Generated documentation will be placed into ${APIDOCDIR}"
echo "========================================"
# Change into the Moodle directory to get some information.
export INPUT="${ROOT}/.moodle"
cd "${INPUT}"
# Checkout the correct branch.
echo "Checking out remote branch"
git fetch origin "${moodlebranch}"
git checkout "remotes/origin/${moodlebranch}"
HASH=`git log -1 --format="%h"`
echo "========================================"
echo "== Installing NodeJS Dependencies"
echo "========================================"
npm ci
echo "========================================"
echo "== Generating ignorefiles"
echo "========================================"
npx grunt ignorefiles
echo "========================================"
echo "== Generating JS Documentation"
echo "========================================"
npx grunt jsdoc
echo "========================================"
echo "== Moving jsdocs into ${APIDOCDIR}"
cd "${ROOT}"
mv "${INPUT}/jsdoc" "${APIDOCDIR}"
echo "== Completed documentation generation for ${version}"
htmlbranchlist="${htmlbranchlist}
<li><a href='./${version}'>Moodle ${version}</a></li>"
done
cat "${ROOT}/index.head.tpl" > "${ROOT}/build/index.html"
echo "${htmlbranchlist}" >> "${ROOT}/build/index.html"
cat "${ROOT}/index.foot.tpl" >> "${ROOT}/build/index.html"
echo "============================================================================"
echo "= Documentation build completed."
echo "============================================================================"