2019-11-15 04:32:04 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-07-16 14:15:31 +01:00
|
|
|
# SPDX-License-Identifier: MIT
|
2019-11-15 04:32:04 +00:00
|
|
|
|
2020-06-09 15:03:35 +01:00
|
|
|
# This script is executed by GitHub Actions for every successful push (on any branch, PR or not).
|
2019-11-15 04:32:04 +00:00
|
|
|
# It runs some basic tests on pages. If the build is also a PR, additional
|
|
|
|
# checks are run through the check-pr script, and any message or error is sent
|
|
|
|
# to tldr-bot to be commented on the PR.
|
|
|
|
#
|
|
|
|
# NOTE: must be run from the repository root directory to correctly work!
|
|
|
|
# NOTE: `set -e` is applied conditionally only if needed.
|
|
|
|
|
2019-11-27 17:22:38 +00:00
|
|
|
# Default test function, ran by `npm test`.
|
|
|
|
function run_tests {
|
2019-11-15 04:32:04 +00:00
|
|
|
markdownlint pages*/**/*.md
|
|
|
|
tldr-lint ./pages
|
2021-04-18 15:19:18 +01:00
|
|
|
for f in ./pages.*; do
|
|
|
|
tldr-lint --ignore "TLDR003,TLDR004,TLDR005,TLDR015,TLDR104" ${f}
|
|
|
|
done
|
2021-09-03 16:17:51 +01:00
|
|
|
run_black
|
|
|
|
flake8 scripts
|
|
|
|
}
|
|
|
|
|
|
|
|
# Wrapper around black as it outputs everything to stderr,
|
|
|
|
# but we want to only print if there are actual errors, and not
|
|
|
|
# the "All done!" success message.
|
|
|
|
function run_black {
|
|
|
|
# we want to ignore the exit code from black on failure, so that we can
|
|
|
|
# do the conditional printing below
|
|
|
|
errs=$(black scripts --check 2>&1 || true)
|
|
|
|
if [[ ${errs} != "All done!"* ]]; then
|
|
|
|
echo -e "${errs}" >&2
|
|
|
|
return 1
|
|
|
|
fi
|
2019-11-15 04:32:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 15:03:35 +01:00
|
|
|
# Special test function for GitHub Actions pull request builds.
|
2019-11-27 17:22:38 +00:00
|
|
|
# Runs run_tests collecting errors for tldr-bot.
|
|
|
|
function run_tests_pr {
|
2019-11-27 17:25:16 +00:00
|
|
|
errs=$(run_tests 2>&1)
|
2019-11-15 04:32:04 +00:00
|
|
|
|
|
|
|
if [ -n "$errs" ]; then
|
|
|
|
echo -e "Test failed!\n$errs\n" >&2
|
|
|
|
echo 'Sending errors to tldr-bot.' >&2
|
2019-11-18 21:58:03 +00:00
|
|
|
echo -n "$errs" | python3 scripts/send-to-bot.py report-errors
|
2019-11-15 04:32:04 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-06-09 15:03:35 +01:00
|
|
|
# Additional checks for GitHub Actions pull request builds.
|
2019-11-15 04:32:04 +00:00
|
|
|
# Only taken as suggestions, does not make the build fail.
|
2019-11-27 17:22:38 +00:00
|
|
|
function run_checks_pr {
|
2019-11-27 17:25:16 +00:00
|
|
|
msgs=$(bash scripts/check-pr.sh)
|
2019-11-15 04:32:04 +00:00
|
|
|
|
|
|
|
if [ -n "$msgs" ]; then
|
|
|
|
echo -e "\nCheck PR reported the following message(s):\n$msgs\n" >&2
|
|
|
|
echo 'Sending check results to tldr-bot.' >&2
|
2019-11-18 21:58:03 +00:00
|
|
|
echo -n "$msgs" | python3 scripts/send-to-bot.py report-check-results
|
2019-11-15 04:32:04 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
###################################
|
|
|
|
# MAIN
|
|
|
|
###################################
|
|
|
|
|
2020-06-26 09:07:39 +01:00
|
|
|
if [ "$CI" = "true" ] && [ "$GITHUB_REPOSITORY" = "tldr-pages/tldr" ] && [ "$PULL_REQUEST_ID" != "" ]; then
|
2019-11-27 17:22:38 +00:00
|
|
|
run_checks_pr
|
|
|
|
run_tests_pr
|
2019-11-15 04:32:04 +00:00
|
|
|
else
|
|
|
|
set -e
|
2019-11-27 17:22:38 +00:00
|
|
|
run_tests
|
2019-11-15 04:32:04 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo 'Test ran succesfully!'
|