Skip to content

Commit

Permalink
TEST - fix nasa#447
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Apr 11, 2022
1 parent 8b4b106 commit ccaba06
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:
run: |
cp ./cfe/cmake/Makefile.sample Makefile
cp -r ./cfe/cmake/sample_defs sample_defs
- name: Make Prep
run: make prep

- name: Install Doxygen Dependencies
run: sudo apt-get install doxygen graphviz -y

- name: Install PDF Generation Dependencies
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
#if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
sudo apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
Expand All @@ -62,10 +62,15 @@ jobs:
key: doc-setup-buildnum-${{ github.run_number }}

build-usersguide:
- needs: setup-doc-build
matrix:
targetname: [mission-doc, cfe-usersguide, osal-apiguide]
needs: setup-doc-build
runs-on: ubuntu-18.04

strategy:
fail-fast: false
matrix:
targetname: [mission-doc, cfe-usersguide, osal-apiguide]

steps:
- name: Get Setup Cache
id: cache-doc-setup
uses: actions/cache@v2
Expand Down Expand Up @@ -103,7 +108,7 @@ jobs:
fi
- name: Generate PDF
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
#if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
mkdir deploy
cd ./build/docs/${{ matrix.targetname }}/latex
Expand All @@ -121,7 +126,8 @@ jobs:
deploy:
needs: build-usersguide
name: Deploy documents
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
#if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
runs-on: ubuntu-18.04

steps:
- name: Get All Artifacts
Expand Down
2 changes: 1 addition & 1 deletion cfe

0 comments on commit ccaba06

Please sign in to comment.