Skip to content

Commit

Permalink
Merge pull request #626 from jphickey/fix-624-patch-app-docbuild
Browse files Browse the repository at this point in the history
Fix #624, add compatibility for CFS app doc build
  • Loading branch information
dzbaker committed Dec 6, 2022
2 parents 8599608 + 12debad commit d5f0824
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ on:
type: boolean
required: false
default: true
needs_osal_api:
description: Whether this depends on the osal public api (compatibility bridge)
type: boolean
required: false
default: true

# Force bash to apply pipefail option so pipeline failures aren't masked
defaults:
Expand Down Expand Up @@ -110,6 +115,10 @@ jobs:
run: |
sudo apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
- name: Generate OSAL header list
if: ${{ inputs.needs_osal_api == true }}
run: make -C build osal_public_api_headerlist

- name: Build Document
run: |
make -C build ${{ matrix.target }} 2>&1 > ${{ matrix.target }}_stdout.txt | tee ${{ matrix.target }}_stderr.txt
Expand Down

0 comments on commit d5f0824

Please sign in to comment.