-
Notifications
You must be signed in to change notification settings - Fork 224
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 #182 from nasa/integration-candidate
cFS Bundle Integration Candidate: 2021-02-02
- Loading branch information
Showing
13 changed files
with
76 additions
and
26 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 |
---|---|---|
|
@@ -69,6 +69,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
persist-credentials: false | ||
|
||
# Setup the build system | ||
- name: Copy Files | ||
|
@@ -112,6 +113,32 @@ jobs: | |
exit -1 | ||
fi | ||
- name: PDF generation installs | ||
if: ${{ github.event_name == 'push' }} | ||
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' }} | ||
run: | | ||
set -x | ||
mkdir deploy | ||
cd ./build/doc/users_guide/latex | ||
make > build.txt | ||
mv refman.pdf $GITHUB_WORKSPACE/deploy/cFE_Users_Guide.pdf | ||
# Could add pandoc and convert to github markdown | ||
# pandoc CFE_Users_Guide.pdf -t gfm | ||
- name: Deploy | ||
if: ${{ github.event_name == 'push' }} | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: deploy | ||
CLEAN: false | ||
SINGLE_COMMIT: true | ||
|
||
build-osalguide: | ||
# Name the Job | ||
name: Osal Guide | ||
|
@@ -124,6 +151,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
persist-credentials: false | ||
|
||
# Setup the build system | ||
- name: Copy Files | ||
|
@@ -167,3 +195,29 @@ jobs: | |
cat osalguide_warnings.log | ||
exit -1 | ||
fi | ||
- name: PDF generation installs | ||
if: ${{ github.event_name == 'push' }} | ||
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' }} | ||
run: | | ||
mkdir deploy | ||
cd ./build/doc/osalguide/latex | ||
make > build.txt | ||
mv refman.pdf $GITHUB_WORKSPACE/deploy/OSAL_Users_Guide.pdf | ||
# Could add pandoc and convert to github markdown | ||
# pandoc CFE_Users_Guide.pdf -t gfm | ||
- name: Deploy | ||
if: ${{ github.event_name == 'push' }} | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: deploy | ||
CLEAN: false | ||
SINGLE_COMMIT: true | ||
|
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
Submodule ci_lab
updated
5 files
+55 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+0 −39 | .travis.yml | |
+3 −0 | README.md |
Submodule sample_app
updated
4 files
+57 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+3 −0 | README.md |
Submodule sample_lib
updated
4 files
+57 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+3 −0 | README.md |
Submodule sch_lab
updated
4 files
+55 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+3 −0 | README.md |
Submodule to_lab
updated
6 files
+55 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+10 −0 | README.md | |
+13 −16 | fsw/src/to_lab_app.c | |
+1 −1 | fsw/src/to_lab_version.h |
Submodule cfe
updated
99 files
Submodule cFS-GroundSystem
updated
4 files
+55 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+3 −0 | README.md |
Submodule elf2cfetbl
updated
4 files
+55 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+3 −0 | README.md |
Submodule tblCRCTool
updated
6 files
+55 −0 | .github/workflows/codeql-build.yml | |
+53 −0 | .github/workflows/format-check.yml | |
+40 −0 | .github/workflows/static-analysis.yml | |
+10 −0 | README.md | |
+1 −2 | cfe_ts_crc.c | |
+10 −8 | cfe_ts_crc_version.h |