From 6338cf75a819a0ab0a805aaaf62a6670006728b5 Mon Sep 17 00:00:00 2001 From: George McCabe <23407799+georgemccabe@users.noreply.github.com> Date: Wed, 19 Jan 2022 13:47:18 -0700 Subject: [PATCH] added CRITICAL documentation output to log summary, minor change to test critical errors are shown in log --- .github/jobs/build_documentation.sh | 1 + docs/Contributors_Guide/continuous_integration.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/jobs/build_documentation.sh b/.github/jobs/build_documentation.sh index 3306facee..5bd00ea17 100755 --- a/.github/jobs/build_documentation.sh +++ b/.github/jobs/build_documentation.sh @@ -25,6 +25,7 @@ if [ -s $warning_file ]; then echo Summary: grep WARNING ${DOCS_DIR}/_build/warnings.log grep ERROR ${DOCS_DIR}/_build/warnings.log + grep CRITICAL ${DOCS_DIR}/_build/warnings.log echo Review this log file or download documentation_warnings.log artifact exit 1 fi diff --git a/docs/Contributors_Guide/continuous_integration.rst b/docs/Contributors_Guide/continuous_integration.rst index 2e57e3c96..cc3809e6b 100644 --- a/docs/Contributors_Guide/continuous_integration.rst +++ b/docs/Contributors_Guide/continuous_integration.rst @@ -322,7 +322,7 @@ keyword:: Setting 'needs: job_control' tells the 'get_image' job to wait until the 'job_control' job has completed before running. Since this is the case, this job can reference output from that job in the 'if' value to determine if the -job should be run or not. +job should be run or not. .. _cg-ci-default-behavior: