Skip to content
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

suit: Manifest allowing to check recovery button from companion #19141

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ahasztag
Copy link
Contributor

This commit adds the possibility to run a companion image which checks the need of entering foreground update mode based on pressing a button.

@ahasztag ahasztag requested review from a team as code owners November 28, 2024 14:45
@github-actions github-actions bot added manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. labels Nov 28, 2024
@ahasztag ahasztag requested a review from tomchy November 28, 2024 14:46
@NordicBuilder
Copy link
Contributor

The following west manifest projects have been modified in this Pull Request:

Name Old Revision New Revision Diff
suit-generator nrfconnect/suit-generator@9c5e8f1 (ncs) nrfconnect/suit-generator#154 nrfconnect/suit-generator#154/files

Note: This message is automatically posted and updated by the Manifest GitHub Action.

@ahasztag ahasztag force-pushed the NCSDK-29998_foreground_update_manifest branch from 6bd0894 to 25c5c55 Compare November 28, 2024 14:47
@ahasztag ahasztag changed the title suit: Manifest allowing to check recovery from companion suit: Manifest allowing to check recovery button from companion Nov 28, 2024
@NordicBuilder
Copy link
Contributor

NordicBuilder commented Nov 28, 2024

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 3

Inputs:

Sources:

sdk-nrf: PR head: 79d57d77ac36c49442188c97f038352979d7b9ab
suit-generator: PR head: 670bf2c5cd5b0206800ef23164d697dfee059f19

more details

sdk-nrf:

PR head: 79d57d77ac36c49442188c97f038352979d7b9ab
merge base: 9726bac6035b57470c253ea84a910814d3a667a3
target head (main): fab8ecbaca993827ae4f978544f6b6b72857677f
Diff

suit-generator:

PR head: 670bf2c5cd5b0206800ef23164d697dfee059f19
merge base: 9c5e8f16ef49e5ffbdeabc87ffd60b82b1fd72b0
target head (ncs): 9c5e8f16ef49e5ffbdeabc87ffd60b82b1fd72b0
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (8)
config
│  ├── suit
│  │  ├── templates
│  │  │  ├── nrf54h20
│  │  │  │  ├── default
│  │  │  │  │  ├── v1
│  │  │  │  │  │  ├── app_recovery_local_envelope.yaml.jinja2
│  │  │  │  │  │  │ root_with_binary_nordic_top.yaml.jinja2
modules
│  ├── lib
│  │  ├── suit-generator
│  │  │  ├── suit_generator
│  │  │  │  ├── suit
│  │  │  │  │  ├── manifest.py
│  │  │  │  │  ├── types
│  │  │  │  │  │  │ keys.py
samples
│  ├── suit
│  │  ├── smp_transfer
│  │  │  ├── sysbuild
│  │  │  │  │ recovery.overlay
subsys
│  ├── suit
│  │  ├── recovery_button
│  │  │  ├── Kconfig
│  │  │  ├── src
│  │  │  │  │ suit_recovery_button.c
west.yml

Outputs:

Toolchain

Version: b77d8c1312
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:b77d8c1312_912848a074

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister
    • sdk-nrf test count: 198
  • ✅ Integration tests
    • ✅ test-fw-nrfconnect-chip
    • ✅ test-sdk-dfu
    • ⚠️ test-sdk-dfu
Disabled integration tests
    • desktop52_verification
    • doc-internal
    • test_ble_nrf_config
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-ble_mesh
    • test-fw-nrfconnect-ble_samples
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-fem
    • test-fw-nrfconnect-nfc
    • test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-nrf-iot_mosh
    • test-fw-nrfconnect-nrf-iot_nrf_provisioning
    • test-fw-nrfconnect-nrf-iot_positioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_serial_lte_modem
    • test-fw-nrfconnect-nrf-iot_thingy91
    • test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • test-fw-nrfconnect-nrf_crypto
    • test-fw-nrfconnect-ps
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-rs
    • test-fw-nrfconnect-tfm
    • test-fw-nrfconnect-thread
    • test-fw-nrfconnect-zigbee
    • test-low-level
    • test-sdk-audio
    • test-sdk-find-my
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-sidewalk
    • test-sdk-wifi
    • test-secdom-samples-public

Note: This message is automatically posted and updated by the CI

@NordicBuilder
Copy link
Contributor

You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds.

Note: This comment is automatically posted by the Documentation Publish GitHub Action.

This commit adds the possibility to run a companion image
which checks the need of entering foreground update mode
based on pressing a button.

Signed-off-by: Artur Hadasz <artur.hadasz@nordicsemi.no>
@ahasztag ahasztag force-pushed the NCSDK-29998_foreground_update_manifest branch from 25c5c55 to 79d57d7 Compare November 28, 2024 16:40
@ahasztag ahasztag requested a review from a team as a code owner November 28, 2024 16:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. DNM manifest manifest-suit-generator
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants