-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #248 from nasa/integration-candidate
cFS bundle Integration candidate: 2021-04-20
- Loading branch information
Showing
4 changed files
with
13 additions
and
9 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 |
---|---|---|
|
@@ -72,6 +72,8 @@ jobs: | |
build-usersguide: | ||
# Name the Job | ||
needs: checks-for-duplicates | ||
if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' }} | ||
name: Users Guide | ||
# Set the type of machine to run on | ||
runs-on: ubuntu-18.04 | ||
|
@@ -127,12 +129,12 @@ jobs: | |
fi | ||
- name: PDF generation installs | ||
if: ${{ github.event_name == 'push' }} | ||
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 | ||
- name: PDF generation | ||
if: ${{ github.event_name == 'push' }} | ||
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}} | ||
run: | | ||
set -x | ||
mkdir deploy | ||
|
@@ -143,7 +145,7 @@ jobs: | |
# pandoc CFE_Users_Guide.pdf -t gfm | ||
- name: Deploy | ||
if: ${{ github.event_name == 'push' }} | ||
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}} | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -154,6 +156,8 @@ jobs: | |
|
||
build-osalguide: | ||
# Name the Job | ||
needs: checks-for-duplicates | ||
if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' }} | ||
name: Osal Guide | ||
# Set the type of machine to run on | ||
runs-on: ubuntu-18.04 | ||
|
@@ -210,12 +214,12 @@ jobs: | |
fi | ||
- name: PDF generation installs | ||
if: ${{ github.event_name == 'push' }} | ||
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 | ||
- name: PDF generation | ||
if: ${{ github.event_name == 'push' }} | ||
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}} | ||
run: | | ||
mkdir deploy | ||
cd ./build/doc/osalguide/latex | ||
|
@@ -225,7 +229,7 @@ jobs: | |
# pandoc CFE_Users_Guide.pdf -t gfm | ||
- name: Deploy | ||
if: ${{ github.event_name == 'push' }} | ||
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}} | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
Submodule cfe
updated
25 files
Submodule osal
updated
15 files
Submodule cFS-GroundSystem
updated
3 files
+9 −0 | Guide-GroundSystem.md | |
+7 −0 | README.md | |
+4 −3 | setup.py |