-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[#427] radio checkout
- Loading branch information
Showing
5 changed files
with
40 additions
and
22 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 |
---|---|---|
|
@@ -44,7 +44,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
fetch-depth: 0 | ||
submodules: recursive | ||
- name: Configure Safe Directory | ||
run: git config --global --add safe.directory $GITHUB_WORKSPACE | ||
|
@@ -56,11 +56,9 @@ jobs: | |
run: make config | ||
- name: build-test | ||
run: | | ||
export CFLAGS="-fprofile-arcs -ftest-coverage -g" | ||
export CFLAGS="-fprofile-arcs -ftest-coverage -g" | ||
make build-test | ||
make test-fsw | ||
# - name: Generate Coverage Report | ||
# run: make gcov | ||
- name: Generate Coverage Report and Badges | ||
run: | | ||
mkdir -p docs/coverage | ||
|
@@ -78,11 +76,9 @@ jobs: | |
run: | | ||
git config user.name "github-actions" | ||
git config user.email "[email protected]" | ||
git add docs/coverage/line-coverage-badge.svg | ||
git add docs/coverage/branch-coverage-badge.svg | ||
git add docs/coverage/line-coverage-badge.svg docs/coverage/branch-coverage-badge.svg || echo "No files to add" | ||
git commit -m "Update coverage badges" || echo "No changes to commit" | ||
git push origin HEAD | ||
git push origin HEAD:${{ github.head_ref }} | ||
- name: Archive Coverage Directory | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -92,3 +88,4 @@ jobs: | |
uses: codecov/codecov-action@v5 | ||
with: | ||
token: 040717d0-b624-470e-be41-d08720135088 | ||
|
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 generic_radio
updated
10 files
+1 −1 | .gitignore | |
+3 −1 | fsw/cfs/CMakeLists.txt | |
+0 −195 | fsw/fprime/src/generic_radio_device.c | |
+0 −64 | fsw/fprime/src/generic_radio_device.h | |
+225 −195 | fsw/shared/generic_radio_device.c | |
+55 −56 | fsw/shared/generic_radio_device.h | |
+66 −0 | fsw/standalone/CMakeLists.txt | |
+19 −0 | fsw/standalone/device_cfg.h | |
+317 −0 | fsw/standalone/generic_radio_checkout.c | |
+66 −0 | fsw/standalone/generic_radio_checkout.h |
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