-
Notifications
You must be signed in to change notification settings - Fork 15
DTNN-132 Clean up bplib prototype readme #260
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
Merged
dzbaker
merged 15 commits into
nasa:main
from
gskenned:DTNN-132-clean-up-bplib-prototype-readme
Aug 1, 2024
Merged
Changes from 11 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
724ec35
DTNN-132 Update README and add example scripts
gskenned 9f35dc7
DTNN-132 Updates during testing
gskenned 5c735f5
DTNN-132 Add setuid root to rbtree and sanity test runners
gskenned 0b55703
DTNN-132 WIP Update README from examples
gskenned 802ebb9
DTNN-132 Add bplib-clean and initialize-cfs-bundle
gskenned 8f3dc68
DTNN-132 Add prompt to clean-bp
gskenned 1ad9773
DTNN-132 Add bplib stand-alone build/test scripts
gskenned 254e17c
DTNN-132 Add cfs-env-vars
gskenned 49f6450
DTNN-132 Fix 'FindNasaOsal.cmake' error
gskenned 0674914
DTNN-132 Revise script README steps for env vars
gskenned ea583aa
DTNN-132 Update README; rm scripts
gskenned 89b43c2
DTNN-132 Update README based on meeting w/Charles
gskenned 1fb1a2d
DTNN-132 Update README absolute paths
gskenned 33c1dae
DTNN-132 Add bpcat test to README
gskenned dc43dff
DTNN-132 Update bpcat test from meeting with Charles
gskenned 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
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,27 @@ | ||
#!/bin/bash | ||
bplib-clean-err() { | ||
echo "bplib-clean exited on error." | ||
exit 1 | ||
} | ||
trap bplib-clean-err ERR | ||
|
||
cd $CFS_HOME | ||
|
||
BPLIB_DELETE_LIST=( \ | ||
"bplib-build-matrix-Debug-OSAL" \ | ||
"bplib-build-matrix-Debug-POSIX" \ | ||
"bplib-build-matrix-Release-OSAL" \ | ||
"bplib-build-matrix-Release-POSIX" \ | ||
) | ||
|
||
echo "In $(pwd)" | ||
echo "Ready to delete:" | ||
echo ${BPLIB_DELETE_LIST[@]} | ||
read -p "Delete [y|N]?" choice | ||
case "${choice}" in | ||
y|Y ) \ | ||
(set -x; rm -rf ${BPLIB_DELETE_LIST[@]});; | ||
* ) \ | ||
echo "bplib-clean canceled." | ||
esac | ||
|
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.
Recommend something along the lines of "BPLib has been tested on Ubuntu 22.04.4 LTS, although it is expected to work on other POSIX-compliant operating systems."