mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Internal: custom number of paralle site-check jobs
This commit is contained in:
parent
9f681f9c0d
commit
1f4a6d7b24
1 changed files with 10 additions and 3 deletions
|
@ -5,7 +5,7 @@ set -e -u
|
|||
# the name of this program
|
||||
progname="$(basename "${0}")"
|
||||
|
||||
help_text="Usage: $progname [BASEURL]
|
||||
help_text="Usage: $progname [OPTIONS...] [BASEURL]
|
||||
|
||||
Validate the site's markup, CSS, and accessibility.
|
||||
|
||||
|
@ -20,6 +20,7 @@ accessibility on every page in the sitemap.
|
|||
|
||||
Options:
|
||||
-h Print this help and exit
|
||||
-j Max parallel jobs. Default: 2
|
||||
"
|
||||
|
||||
# TODO: add the following:
|
||||
|
@ -37,12 +38,18 @@ bad_option() {
|
|||
exit 1
|
||||
}
|
||||
|
||||
while getopts "hb" flags; do
|
||||
jobs='2'
|
||||
|
||||
while getopts "hj" flags; do
|
||||
case ${flags} in
|
||||
h)
|
||||
usage
|
||||
exit 0
|
||||
;;
|
||||
j)
|
||||
jobs="$1"
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
bad_option "${flags}" 'invalid option'
|
||||
exit 1
|
||||
|
@ -54,6 +61,6 @@ base_url="${1-http://localhost:8089}"
|
|||
|
||||
# HTML validation is already parallelized, so run that single-threaded.
|
||||
make -j1 HUGO_FLAGS=-DF HUGO_BASEURL="$base_url" clean hugo xhtmlize validate-html
|
||||
make -j2 -f Makefile.online HUGO_BASEURL="$base_url" all-extra URLS="$(curl -sSL "$base_url/sitemap.xml" | htmlq loc -t | rg -v '/search/$' | tr '\n' ' ')"
|
||||
make -j "$jobs" -f Makefile.online HUGO_BASEURL="$base_url" all-extra URLS="$(curl -sSL "$base_url/sitemap.xml" | htmlq loc -t | rg -v '/search/$' | tr '\n' ' ')"
|
||||
|
||||
# vi:ft=sh
|
||||
|
|
Loading…
Reference in a new issue