Skip to content

Commit

Permalink
Fix nasa#798, Update build and test workflows to include sample/lab a…
Browse files Browse the repository at this point in the history
…pps + lib
  • Loading branch information
thnkslprpt committed Sep 29, 2024
1 parent 54556c6 commit d208df5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build-run-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
run: |
echo "APP_UPPER=$(echo ${{ inputs.app-name }} | sed 's/[a-z]/\U&/g')" >> $GITHUB_ENV
echo "APP_LOWER=$(echo ${{ inputs.app-name }} | sed 's/[A-Z]/\L&/g')" >> $GITHUB_ENV
echo "IS_SAMPLE_OR_LAB=$(echo ${{ inputs.app-name }} | grep -iqE 'sample|lab' && echo true || echo false)" >> $GITHUB_ENV
- name: Set up start string for verification
run: |
Expand Down Expand Up @@ -75,12 +76,16 @@ jobs:
- name: Add To Build
run: |
sed -i "/list(APPEND MISSION_GLOBAL_APPLIST/a list(APPEND MISSION_GLOBAL_APPLIST $APP_LOWER)" sample_defs/targets.cmake
if [[ "$IS_SAMPLE_OR_LAB" == "false" ]]; then
sed -i "/list(APPEND MISSION_GLOBAL_APPLIST/a list(APPEND MISSION_GLOBAL_APPLIST $APP_LOWER)" sample_defs/targets.cmake
fi
- name: Add To Startup
run: |
sed -i "1i CFE_APP, $APP_LOWER, ${APP_UPPER}_AppMain, $APP_UPPER, 80, 16384, 0x0, 0;" sample_defs/cpu1_cfe_es_startup.scr
cat sample_defs/cpu1_cfe_es_startup.scr
if [[ "$IS_SAMPLE_OR_LAB" == "false" ]]; then
sed -i "1i CFE_APP, $APP_LOWER, ${APP_UPPER}_AppMain, $APP_UPPER, 80, 16384, 0x0, 0;" sample_defs/cpu1_cfe_es_startup.scr
cat sample_defs/cpu1_cfe_es_startup.scr
fi
- name: Make install
run: make SIMULATION=native BUILDTYPE=release OMIT_DEPRECATED=true install
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/unit-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
# Optional inputs
app-name:
description: Application name, if different from repo name
description: Application or library name, if different from repo name
type: string
required: false
default: ${{ github.event.repository.name }}
Expand Down Expand Up @@ -53,9 +53,11 @@ jobs:

- name: Set up environment variables
# Apps typically use lowercase targets and uppercase names, this logic is fragile but works
# Also mark sample and lab apps/libraries as we don't need to add those to the build (they're part of the bundle already)
run: |
echo "APP_UPPER=$(echo ${{ inputs.app-name }} | sed 's/[a-z]/\U&/g')" >> $GITHUB_ENV
echo "APP_LOWER=$(echo ${{ inputs.app-name }} | sed 's/[A-Z]/\L&/g')" >> $GITHUB_ENV
echo "IS_SAMPLE_OR_LAB=$(echo ${{ inputs.app-name }} | grep -iqE 'sample|lab' && echo true || echo false)" >> $GITHUB_ENV
- name: Checkout Bundle Main
uses: actions/checkout@v4
Expand All @@ -75,15 +77,17 @@ jobs:
- name: Add Repo To Build
run: |
sed -i "/list(APPEND MISSION_GLOBAL_APPLIST/a list(APPEND MISSION_GLOBAL_APPLIST $APP_LOWER)" sample_defs/targets.cmake
if [[ "$IS_SAMPLE_OR_LAB" == "false" ]]; then
sed -i "/list(APPEND MISSION_GLOBAL_APPLIST/a list(APPEND MISSION_GLOBAL_APPLIST $APP_LOWER)" sample_defs/targets.cmake
fi
- name: Make Prep
run: make SIMULATION=native ENABLE_UNIT_TESTS=true OMIT_DEPRECATED=true prep

- name: Build app build dependencies
run: make -C build/tools/elf2cfetbl

- name: Build app target
- name: Build app/library target
run: |
make -C build/native/default_cpu1/apps/$APP_LOWER
Expand Down

0 comments on commit d208df5

Please sign in to comment.