-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature 1819 automation doc warnings (#1836)
- Loading branch information
Showing
2 changed files
with
31 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#! /bin/bash | ||
|
||
# path to docs directory relative to top level of repository | ||
# $GITHUB_WORKSPACE is set if the actions/checkout@v2 action is run first | ||
|
||
DOCS_DIR=${GITHUB_WORKSPACE}/met/docs | ||
|
||
# run Make to build the documentation and return to previous directory | ||
cd ${DOCS_DIR} | ||
make clean html | ||
cd - | ||
|
||
# copy HTML output into directory to create an artifact | ||
mkdir -p artifact/documentation | ||
cp -r ${DOCS_DIR}/_build/html/* artifact/documentation | ||
|
||
# check if the warnings.log file is empty | ||
# Copy it into the artifact and documentation directories | ||
# so it will be available in the artifacts | ||
warning_file=${DOCS_DIR}/_build/warnings.log | ||
if [ -s $warning_file ]; then | ||
cp -r ${DOCS_DIR}/_build/warnings.log artifact/doc_warnings.log | ||
cp artifact/doc_warnings.log artifact/documentation | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters