Skip to content

Commit

Permalink
Merge pull request #625 from jphickey/fix-623-show-doc-stderr
Browse files Browse the repository at this point in the history
Fix #623, show stderr output on doc build workflow
  • Loading branch information
dzbaker committed Dec 6, 2022
2 parents 75ce7fb + 0466572 commit 8599608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Add Repo To Build
if: ${{ inputs.app-name != '' }}
run: sed -i '/list(APPEND MISSION_GLOBAL_APPLIST/a list(APPEND MISSION_GLOBAL_APPLIST ${{ inputs.app-name }})' sample_defs/targets.cmake
run: echo 'set(MISSION_GLOBAL_APPLIST ${{ inputs.app-name }})' >> sample_defs/targets.cmake

- name: Make Prep
run: make prep
Expand All @@ -112,7 +112,7 @@ jobs:
- name: Build Document
run: |
make -C build ${{ matrix.target }} > ${{ matrix.target }}_stdout.txt 2> ${{ matrix.target }}_stderr.txt
make -C build ${{ matrix.target }} 2>&1 > ${{ matrix.target }}_stdout.txt | tee ${{ matrix.target }}_stderr.txt
mv build/docs/${{ matrix.target }}/${{ matrix.target }}-warnings.log .
- name: Archive Document Build Logs
Expand Down

0 comments on commit 8599608

Please sign in to comment.