-
Notifications
You must be signed in to change notification settings - Fork 10
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
Testing ai pull #280
base: testingAI
Are you sure you want to change the base?
Testing ai pull #280
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,14 @@ | |
run: | | ||
pip3 install -r nrf/scripts/requirements-base.txt | ||
pip3 install -r nrf/scripts/requirements-extra.txt | ||
pip3 inst -r nrf/scripts/requirements-extra.txt | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo in the command: |
||
|
||
- name: Get repo urls | ||
working-directory: ncs | ||
run: | | ||
echo "SDK_ZEPHYR=$(west list zephyr -f {url} | awk -F// '{print $NF}')" >> $GITHUB_ENV | ||
echo "SDK_MCUBOOT=$(west list mcuboot -f {url} | awk -F// '{print $NF}')" >> $GITHUB_ENV | ||
|
||
#dummy comment | ||
Check failure on line 37 in .github/workflows/create-upmerge-PRs.yml GitHub Actions / Run compliance checks on patch series (PR)TRAILING_WHITESPACE
Check warning on line 37 in .github/workflows/create-upmerge-PRs.yml GitHub Actions / Run compliance checks on patch series (PR)YAMLLint (comments)
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the dummy comment as it does not provide any useful information. |
||
- name: Try closing existing auto-upmerge PRs | ||
run: | | ||
SDK_ZEPHYR_PR=$(gh pr list --repo $SDK_ZEPHYR --label "auto-upmerge" --json number --jq .[0].number) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,5 @@ tests: | |
- nrf52840dk/nrf52840 | ||
- nrf9160dk/nrf9160/ns | ||
- nrf21540dk/nrf52840 | ||
- nrf3u9348934/someNewBoard | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The addition of |
||
tags: ci_build sysbuild ci_samples_app_event_manager_profiler_tracer |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
#include "control_event.h" | ||
|
||
|
||
static void profile_control_event(struct log_event_buf *buf, | ||
static int profile_control_event(struct log_event_buf *buf, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changing the return type from |
||
const struct app_event_header *aeh) | ||
{ | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,8 @@ | |
The SUIT recovery application is a minimal application that allows recovering the device firmware if the original firmware is damaged. | ||
It is to be used as a companion firmware to the main application that is using :ref:`Software Update for Internet of Things (SUIT) <ug_nrf54h20_suit_intro>` procedure, rather than a stand-alone application. | ||
|
||
The following limitations apply to this application: | ||
The following limitations apply to this aptikation: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo in the word 'aptikation'; it should be 'application'. |
||
The following limitations apply to this aplication: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo in the word 'aplication'; it should be 'application'. |
||
|
||
* The recovery firmware is only able to recover from a situation where the application or radio core are damaged. | ||
It does not recover from Nordic Semiconductor-controlled firmware failures. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ CONFIG_SUIT_RECOVERY=y | |
# The MPI has to be generated from the top level application, not from | ||
# the recovery application. This is because the digests of the main application MPI | ||
# and the recovery application MPI is calculated together for a given domain. | ||
CONFIG_SUIT_MPI_GENERATE=n | ||
CONFIG_SUIT_MPI_GENERATE=nonono | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The value for |
||
CONFIG_SUIT_ENVELOPE_OUTPUT_MPI_MERGE=n | ||
|
||
# It is the main application which is responsible for flashing and generating the UICR | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,8 +156,8 @@ | |
kconfig, value = line.split("=", 1) | ||
configs[kconfig] = value.strip() | ||
return configs | ||
except Exception as err : | ||
raise Exception("Unable to parse .config file") from err | ||
raise Exception("Unable to parse .config file") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
|
||
def version_parse(self): | ||
try: | ||
|
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.
The
runs-on
value should be a valid version of Ubuntu.ubuntu-24.04
does not exist; consider usingubuntu-22.04
or another supported version.