# Documentation pages need front matter for tracking purposes.
echo'=> Checking documentation for front matter...'
echo
# shellcheck disable=2059
printf"${COLOR_GREEN}INFO: Checking documentation for front matter...${COLOR_RESET}\n"
if! scripts/lint-docs-metadata.sh
then
echo'✖ ERROR: These documentation pages need front matter. See https://docs.gitlab.com/ee/development/documentation/index.html#stage-and-group-metadata for how to add it.'>&2
echo
# shellcheck disable=2059
printf"${COLOR_RED}ERROR: These documentation pages need front matter!${COLOR_RESET}"
printf" See https://docs.gitlab.com/ee/development/documentation/index.html#stage-and-group-metadata for how to add it.\n">&2
((ERRORCODE++))
fi
# Test for non-standard spaces (NBSP, NNBSP, ZWSP) in documentation.
printf"${COLOR_RED}ERROR: The number of directory names containing dashes has changed!${COLOR_RESET} Use underscores instead of dashes for the directory names.\n">&2
printf"If removing a directory containing dashes, update NUMBER_DASHES in lint-doc.sh.\n">&2
printf"${COLOR_RED}ERROR: Found one or more directories with an uppercase letter in their name!${COLOR_RESET} Use lowercase instead of uppercase for the directory names.\n">&2
printf"${COLOR_RED}ERROR: Found one or more file names with an uppercase letter in their name!${COLOR_RESET} Use lowercase instead of uppercase for the file names.\n">&2
echo-e"Merged results pipeline detected. Testing only the following files:\n${MD_DOC_PATH}"
# shellcheck disable=2059
printf"${COLOR_GREEN}INFO: Merged results pipeline detected. Testing only the following files:${COLOR_RESET}\n${MD_DOC_PATH}"
fi
fi
fi
...
...
@@ -151,58 +159,63 @@ function run_locally_or_in_container() {
local args=$2
local registry_url="registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.16-vale-2.22.0-markdownlint-0.32.2-markdownlint2-0.6.0"
if hash${cmd} 2>/dev/null
if hash"${cmd}" 2>/dev/null
then
# shellcheck disable=2059
printf"${COLOR_GREEN}INFO: Found locally-installed ${cmd}! Running...${COLOR_RESET}\n"
$cmd$args
# When using software like Rancher Desktop, both nerdctl and docker binaries are available
# but only one is configured. To check which one to use, we need to probe each runtime
elif(hash nerdctl 2>/dev/null)&&(nerdctl info 2>&1 1>/dev/null)
elif(hash nerdctl 2>/dev/null)&&(nerdctl info >/dev/null 2>&1)
then
# shellcheck disable=2059
printf"${COLOR_GREEN}INFO: Found nerdctl! Using linting image to run ${cmd}...${COLOR_RESET}\n"
nerdctl run -t-v"${PWD}:/gitlab"-w /gitlab --rm${registry_url}${cmd}${args}
elif(hash docker 2>/dev/null)&&(docker info 2>&1 1>/dev/null)
elif(hash docker 2>/dev/null)&&(docker info >/dev/null 2>&1)
then
# shellcheck disable=2059
printf"${COLOR_GREEN}INFO: Found docker! Using linting image to run ${cmd}...${COLOR_RESET}\n"
docker run -t-v"${PWD}:/gitlab"-w /gitlab --rm${registry_url}${cmd}${args}
else
echo
echo" ✖ ERROR: '${cmd}' not found. Install '${cmd}' or a container runtime (Docker/Nerdctl) to proceed.">&2
echo
# shellcheck disable=2059
printf"${COLOR_RED}ERROR: '${cmd}' not found!${COLOR_RESET} Install '${cmd}' locally, or install a container runtime (docker or nerdctl) and try again.\n">&2
((ERRORCODE++))
fi
if[$?-ne 0 ]
then
echo
echo" ✖ ERROR: '${cmd}' failed with errors.">&2
echo
# shellcheck disable=2059
printf"${COLOR_RED}ERROR: '${cmd}' failed with errors!${COLOR_RESET}\n">&2
printf"${COLOR_RED}Documentation metadata missing in %s.${COLOR_RESET}\n""$file">&2
printf"${COLOR_RED}ERROR: Documentation metadata missing in %s.${COLOR_RESET}\n""$file">&2
FAILING_FILES=$((FAILING_FILES +1))
elif["$VERBOSE"=="true"];then
printf"Documentation metadata found in %s.\n""$file"
printf"${COLOR_GREEN}INFO: Documentation metadata found in %s.${COLOR_RESET}\n""$file"
fi
}
...
...
@@ -53,7 +53,7 @@ function check_all_files {
if[["$CHECK_ALL"="true"]];then
# shellcheck disable=SC2059
printf"No files supplied. Checking all markdown files in doc/.\n"
printf"${COLOR_GREEN}INFO: No files supplied! Checking all markdown files in doc/...${COLOR_RESET}\n"
check_all_files
else
# Takes a list of Markdown files as a parameter
...
...
@@ -66,10 +66,10 @@ fi
if["$FAILING_FILES"-gt 0 ];then
# shellcheck disable=SC2059
printf"\n${COLOR_RED}Documentation metadata is missing in ${FAILING_FILES} of ${TOTAL_FILES} documentation files.${COLOR_RESET} For more information, see https://docs.gitlab.com/ee/development/documentation/#metadata.\n">&2
printf"\n${COLOR_RED}ERROR: Documentation metadata is missing in ${FAILING_FILES} of ${TOTAL_FILES} documentation files.${COLOR_RESET} For more information, see https://docs.gitlab.com/ee/development/documentation/#metadata.\n">&2
exit 1
else
# shellcheck disable=SC2059
printf"${COLOR_GREEN}Documentation metadata found in ${TOTAL_FILES} documentation files.${COLOR_RESET}\n"
printf"${COLOR_GREEN}INFO: Documentation metadata found in ${TOTAL_FILES} documentation files.${COLOR_RESET}\n"