Skip to content

Commit

Permalink
IC:2021-06-15, HOTFIX, usersguide warnings log
Browse files Browse the repository at this point in the history
Update check in documentation build workflow to reflect new warnings
logfile name for usersguide changed in nasa/cFE#1612
  • Loading branch information
astrogeco committed Jun 16, 2021
1 parent 648e945 commit 40c8072
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ jobs:
- name: Build Usersguide
run: |
make usersguide > make_usersguide_stdout.txt 2> make_usersguide_stderr.txt
mv build/docs/warnings.log usersguide_warnings.log
- name: Archive Users Guide Build Logs
uses: actions/upload-artifact@v2
Expand All @@ -111,7 +110,7 @@ jobs:
path: |
make_usersguide_stdout.txt
make_usersguide_stderr.txt
usersguide_warnings.log
cfe-usersguide-warnings.log
- name: Error Check
Expand All @@ -123,8 +122,8 @@ jobs:
- name: Warning Check
run: |
if [[ -s usersguide_warnings.log ]]; then
cat usersguide_warnings.log
if [[ -s cfe-usersguide-warnings.log ]]; then
cat cfe-usersguide-warnings.log
exit -1
fi
Expand Down

0 comments on commit 40c8072

Please sign in to comment.