-
Notifications
You must be signed in to change notification settings - Fork 217
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 #1076 from nasa/integration-candidate
osal Integration candidate:2021-06-15
- Loading branch information
Showing
43 changed files
with
1,247 additions
and
992 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
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: "Build OSAL Documentation (API Guide)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
|
||
#Check for duplicate actions. Skips push actions if there is a matching or duplicate pull-request action. | ||
check-for-duplicates: | ||
runs-on: ubuntu-latest | ||
# Map a step output to a job output | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: 'same_content' | ||
skip_after_successful_duplicate: 'true' | ||
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' | ||
|
||
build-osal-apiguide: | ||
#Continue if check-for-duplicates found no duplicates. Always runs for pull-requests. | ||
needs: check-for-duplicates | ||
if: ${{ needs.check-for-duplicates.outputs.should_skip != 'true' }} | ||
runs-on: ubuntu-18.04 | ||
timeout-minutes: 15 | ||
|
||
steps: | ||
- name: Install Dependencies | ||
run: sudo apt-get install doxygen graphviz -y | ||
|
||
- name: Checkout submodule | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up for build | ||
run: | | ||
cp Makefile.sample Makefile | ||
make prep | ||
- name: Build OSAL API Guide | ||
run: | | ||
make osal-apiguide > make_osal-apiguide_stdout.txt 2> make_osal-apiguide_stderr.txt | ||
mv build/docs/osal-apiguide-warnings.log osal-apiguide-warnings.log | ||
- name: Archive Osal Guide Build Logs | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: OSAL Guide Artifacts | ||
path: | | ||
make_osal-apiguide_stdout.txt | ||
make_osal-apiguide_stderr.txt | ||
osal-apiguide-warnings.log | ||
- name: Error Check | ||
run: | | ||
if [[ -s make_osal-apiguide_stderr.txt ]]; then | ||
cat make_osal-apiguide_stderr.txt | ||
exit -1 | ||
fi | ||
- name: Warning Check | ||
run: | | ||
if [[ -s osal-apiguide-warnings.log ]]; then | ||
cat osal-apiguide-warnings.log | ||
exit -1 | ||
fi |
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
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
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
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
File renamed without changes.
File renamed without changes.
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# All of the OSAL FSW code relevant for a detail design document is under | ||
# src/os and src/bsp, everything else is test and examples/support | ||
# Note this will include ALL OS/BSP layers, it does not currently filter | ||
# based on which OS/BSP is actually in use. | ||
INPUT += @osal_MISSION_DIR@/src/os | ||
INPUT += @osal_MISSION_DIR@/src/bsp | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.