forked from nasa/cFE
-
Notifications
You must be signed in to change notification settings - Fork 0
Test cFS/workflows#122 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
arielswalker
wants to merge
3
commits into
dev
Choose a base branch
from
test-cfs/workflows122
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+464
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,14 @@ | ||
| name: Add Issue or PR to Project | ||
|
|
||
| on: | ||
| issues: | ||
| types: [opened] | ||
| # For testing purposes changed pull_request_target to pull_request | ||
| pull_request: | ||
| types: [opened, ready_for_review, converted_to_draft] | ||
|
|
||
| jobs: | ||
| add-to-project: | ||
| name: Add issue or pull request to project | ||
| uses: arielswalker/cFS/.github/workflows/add-to-project-reusable.yml@test-cfs/workflows122 | ||
| secrets: inherit |
This file contains hidden or 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,52 @@ | ||
| name: "Code Coverage Analysis, EDS enabled" | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - dev | ||
| - main | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - reopened | ||
| - synchronize | ||
| workflow_dispatch: | ||
| schedule: | ||
| # 11:00 PM UTC every Sunday | ||
| - cron: '0 23 * * 0' | ||
|
|
||
| env: | ||
| SIMULATION: native | ||
| ENABLE_UNIT_TESTS: true | ||
| OMIT_DEPRECATED: false | ||
| CFE_EDS_ENABLED: true | ||
| BUILDTYPE: debug | ||
|
|
||
| jobs: | ||
|
|
||
| Execute-Unit-Tests: | ||
| name: Build and Execute CFE unit tests | ||
| runs-on: ubuntu-22.04 | ||
| container: ghcr.io/core-flight-system/cfsbuildenv-linux:latest | ||
| timeout-minutes: 15 | ||
|
|
||
| steps: | ||
| - name: Checkout CFE | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| path: cfe | ||
|
|
||
| - name: Set up Dependencies | ||
| uses: ./cfe/.github/actions/setup-cfe | ||
| with: | ||
| source-dir: . | ||
| preferred-ref: ${{ github.head_ref }} | ||
| org: nasa | ||
|
|
||
| - name: Execute coverage testing | ||
| uses: ./cfe/.github/actions/code-coverage | ||
| with: | ||
| module-list: config core_api core_private es evs fs resourceid sb sbr tbl time | ||
| allowed-missed-branches: 22 | ||
| allowed-missed-lines: 14 | ||
| allowed-missed-functions: 0 |
This file contains hidden or 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,189 @@ | ||
| name: "Internal Functional Test, EDS enabled" | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - dev | ||
| - main | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - reopened | ||
| - synchronize | ||
| workflow_dispatch: | ||
| schedule: | ||
| # 11:45 PM UTC every Sunday | ||
| - cron: '45 23 * * 0' | ||
|
|
||
| env: | ||
| SIMULATION: native | ||
| ENABLE_UNIT_TESTS: false | ||
| OMIT_DEPRECATED: true | ||
| CFE_EDS_ENABLED: true | ||
| BUILDTYPE: debug | ||
| # jphfix should be release | ||
|
|
||
| jobs: | ||
|
|
||
| Local-Test-Build: | ||
| name: Build CFE | ||
| runs-on: ubuntu-22.04 | ||
| container: ghcr.io/core-flight-system/cfsbuildenv-linux:latest | ||
| timeout-minutes: 15 | ||
|
|
||
| steps: | ||
| - name: Checkout CFE | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| path: cfe | ||
|
|
||
| - name: Set up Dependencies | ||
| uses: ./cfe/.github/actions/setup-cfe | ||
| with: | ||
| source-dir: . | ||
| preferred-ref: ${{ github.head_ref }} | ||
| org: nasa | ||
|
|
||
| # Setup the build system | ||
| - name: Set up for build | ||
| run: make prep | ||
|
|
||
| - name: Build CFE | ||
| run: make install | ||
|
|
||
| - name: Generate Startup Link | ||
| run: ln -s core-cpu1 ./build/exe/cpu1/container-start | ||
|
|
||
| - name: List cpu1 | ||
| run: ls build/exe/cpu1/ | ||
|
|
||
| - name: Archive binaries | ||
| run: | | ||
| cd $GITHUB_WORKSPACE/build/exe | ||
| find -maxdepth 1 -mindepth 1 -type d | while read dir | ||
| do | ||
| inst=$(basename ${dir}) | ||
| tar Jcv -f $GITHUB_WORKSPACE/${inst}-bin.tar.xz -C ${inst} . | ||
| done | ||
|
|
||
| - name: Upload all artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: functional-test-eds-bin | ||
| path: ./*.tar.xz | ||
|
|
||
| Execute-Test: | ||
| name: Execute Functional Test | ||
| permissions: | ||
| contents: read | ||
| actions: read | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| GH_HOST: developer.nasa.gov | ||
| GH_REPO: cFS/cFE | ||
| runs-on: ubuntu-22.04 | ||
| needs: Local-Test-Build | ||
| timeout-minutes: 15 | ||
|
|
||
| steps: | ||
| - name: Download artifact | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: functional-test-eds-bin | ||
| path: functional-test-eds-bin | ||
|
|
||
| - name: Unpack artifacts | ||
| run: | | ||
| for i in cpu1 host | ||
| do | ||
| mkdir -p "$i" | ||
| tar Jxv -C "$i" -f "$GITHUB_WORKSPACE/functional-test-eds-bin/$i-bin.tar.xz" | ||
| done | ||
|
|
||
| - name: List Files | ||
| run: ls -lR . | ||
|
|
||
| - name: Start CPU1 container | ||
| id: start-cpu1 | ||
| uses: nasa/cFS/actions/start-cfs-container@dev | ||
| with: | ||
| binary-dir: ${{ github.workspace }}/cpu1 | ||
| exec-image: ghcr.io/core-flight-system/cfsbuildenv-linux:latest | ||
|
|
||
| - name: Check CPU1 container | ||
| id: check-cpu1 | ||
| uses: nasa/cFS/actions/healthcheck-logs@dev | ||
| with: | ||
| container-id: ${{ steps.start-cpu1.outputs.container-id }} | ||
| healthcheck-regex: 'CFE_ES_Main entering OPERATIONAL state$' | ||
|
|
||
| - name: Execute No-Op Check | ||
| working-directory: ./host | ||
| run: | | ||
| ./cmd_send -v --host=${{ steps.check-cpu1.outputs.ip-addr }} --endian=EDS --pktid=CFE_ES/Application/CMD --cmdcode=NoopCmd | ||
| sleep 2 | ||
| docker logs "${{ steps.start-cpu1.outputs.container-id }}" | grep -A 2 'CFE_ES 3: No-op command' | ||
|
|
||
| - name: Launch Functional Test | ||
| working-directory: ./host | ||
| run: | | ||
| ./cmd_send -v --host=${{ steps.check-cpu1.outputs.ip-addr }} --endian=EDS --pktid=CFE_ES/Application/CMD --cmdcode=StartAppCmd Application="CFE_TEST" AppEntryPoint="CFE_TestMain" AppFileName="cfe_testcase" StackSize=16384 Priority=100 | ||
| sleep 10 | ||
| docker logs "${{ steps.start-cpu1.outputs.container-id }}" | ||
|
|
||
| - name: Wait for Functional Test | ||
| working-directory: ./cpu1 | ||
| run: | | ||
| counter=0 | ||
| stuck=0 | ||
|
|
||
| while [ ! -f cf/cfe_test.log ] | ||
| do | ||
| temp=$(grep -c "BEGIN" cf/cfe_test.tmp) | ||
| if [ $temp -eq $counter ] | ||
| then | ||
| stuck=$(($stuck + 1)) | ||
| else | ||
| stuck=0 | ||
| fi | ||
|
|
||
| if [ $stuck -ge 3 ] | ||
| then | ||
| echo "Test is frozen. Quitting" | ||
| break | ||
| fi | ||
|
|
||
| counter=$(grep -c "BEGIN" cf/cfe_test.tmp) | ||
| echo "Waiting for CFE Tests" | ||
| sleep 30 | ||
| done | ||
|
|
||
| - name: Shut down CFE | ||
| if: ${{ always() && steps.check-cpu1.outputs.ip-addr != '' }} | ||
| working-directory: ./host | ||
| run: | | ||
| ./cmd_send -v --host=${{ steps.check-cpu1.outputs.ip-addr }} --endian=EDS --pktid=CFE_ES/Application/CMD --cmdcode=RestartCmd RestartType=2 | ||
| sleep 1 | ||
|
|
||
| - name: Stop CPU1 Container | ||
| if: ${{ always() && steps.start-cpu1.outputs.container-id != '' }} | ||
| uses: nasa/cFS/actions/stop-cfs-container@dev | ||
| with: | ||
| container-id: ${{ steps.start-cpu1.outputs.container-id }} | ||
|
|
||
| - name: Archive cFS Startup Artifacts | ||
| if: always() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: cFS-startup-log-deprecate-true-release | ||
| path: cpu1/cf/cfe_test.log | ||
|
|
||
| - name: Check for cFS Warnings | ||
| run: | | ||
| if [[ -z $(grep -i "SUMMARY.*FAIL::0.*TSF::0.*TTF::0" cf/cfe_test.log) ]]; then | ||
| echo "Must resolve Test Failures in cFS Test App before submitting a pull request" | ||
| echo "" | ||
| grep -i '\[ FAIL]\|\[ TSF]\|\[ TTF]' cf/cfe_test.log | ||
| exit -1 | ||
| fi | ||
| working-directory: ./cpu1/ | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment should be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the test PR. The actual PR is here.