Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,18 @@ If, for instance, you would add a new board to `boards.txt` called Neovortex, th
#### Deployment

1. After testing, edit the URL in the package index document and commit again.


#### Build pipeline

1. In the yocto recipe, this package is pulled via it's commit hash. This commit ID needs to be updated in the Yocto recipe in the file "neocortex-arduino-native_0.0.1.bb"

2. Lastly, in the Jenkins configuration panel scroll down to the "Execute shell" script, and add the new recipe to the list of recipe configurations that need to be generated for "local.conf". For example:

```bash
if [ -n "${BIOX_TORSK_FIRMWARE_BRANCH}" ]; then
echo "BIOX_INTEGRATION_BRANCH_pn-rombov-firmware = \"${BIOX_TORSK_FIRMWARE_BRANCH}\"" >> conf/local.conf
echo "BIOX_INTEGRATION_BRANCH_pn-rombov2-firmware = \"${BIOX_TORSK_FIRMWARE_BRANCH}\"" >> conf/local.conf
echo "BIOX_INTEGRATION_BRANCH_pn-rombov3-firmware = \"${BIOX_TORSK_FIRMWARE_BRANCH}\"" >> conf/local.conf
fi
```