-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgen_doc.sh
executable file
·34 lines (25 loc) · 1004 Bytes
/
gen_doc.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
#!/usr/bin/env bash
# Version: 3.1
# Date: 2024-04-17
# This bash script generates a CMSIS Software Pack:
#
set -o pipefail
# Set version of gen pack library
# For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
# Use the tag name without the prefix "v", e.g., 0.7.0
REQUIRED_GEN_PACK_LIB="0.11.3"
DIRNAME=$(dirname "$(readlink -f "$0")")
# Set GEN_PACK_LIB_PATH to use a specific gen-pack library root
# ... instead of bootstrap based on REQUIRED_GEN_PACK_LIB
if [[ -n "${GEN_PACK_LIB_PATH}" ]] && [[ -f "${GEN_PACK_LIB_PATH}/gen-pack" ]]; then
. "${GEN_PACK_LIB_PATH}/gen-pack"
else
. <(curl -sL "https://raw.githubusercontent.com/Open-CMSIS-Pack/gen-pack/main/bootstrap")
fi
UTILITY_MKDOCS=$(find_utility "mkdocs")
report_utility "mkdocs" "${UTILITY_MKDOCS}" $? || (echo_log "Hint: Run pip install mkdocs"; exit 1)
find_linkchecker
echo_log "Generating documentation ..."
mkdocs build
check_links --timeout 120 "${DIRNAME}/../site/index.html" "${DIRNAME}"
exit 0