-
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.
Browse files
Browse the repository at this point in the history
* Update install_met_env.kiowa Commented out items and added text to description * #1817 Added to_north argument at two_to_one() * #1817 Calls two_to_one() with false for the third argument, to_north, if latitude moves north to south * Feature 1819 automation doc warnings (#1836) * Removing "/lib" that should not be there. * #1508 checking stat() methoid returns no error before looking at FILE flag Co-authored-by: jprestop <[email protected]> Co-authored-by: Howard Soh <[email protected]> Co-authored-by: hsoh-u <[email protected]>
- Loading branch information
1 parent
626bb70
commit 7b3fa26
Showing
7 changed files
with
86 additions
and
51 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
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
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
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
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
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