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

manifest: sdk-zephyr: [nrf noup] Add support for nRF54H20 EngB #18283

Conversation

NordicBuilder
Copy link
Contributor

Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-zephyr#2178

@NordicBuilder NordicBuilder requested a review from a team as a code owner October 28, 2024 13:41
@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 Oct 28, 2024
@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Oct 28, 2024

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

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@055d020 nrfconnect/sdk-zephyr#2178 nrfconnect/sdk-zephyr#2178/files

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

@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Oct 28, 2024

CI Information

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

Inputs:

Sources:

sdk-nrf: PR head: 1063e58cb8fc664468aa05e1a42c297c37d0c8e5
zephyr: PR head: 5685fd6f8d5ab26d2dd44aa91d7bc01e70d92530

more details

sdk-nrf:

PR head: 1063e58cb8fc664468aa05e1a42c297c37d0c8e5
merge base: fc95425f8c75ac93ad5831387088ba9f0df8b594
target head (main): d2c76f9ab3a38ec8d9a14ca952a17d15b8050897
Diff

zephyr:

PR head: 5685fd6f8d5ab26d2dd44aa91d7bc01e70d92530
merge base: 055d020877e43430585cc670b433675309622dc7
target head (main): c1dc2ca3cf756b007a87b6d30c5a240c0e013275
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 (43)
west.yml
zephyr
│  ├── boards
│  │  ├── nordic
│  │  │  ├── nrf54h20dk
│  │  │  │  │ nrf54h20dk_nrf54h20-ipc_conf.dtsi
│  │  │  ├── nrf9280pdk
│  │  │  │  │ nrf9280pdk_nrf9280-ipc_conf.dtsi
│  ├── cmake
│  │  ├── modules
│  │  │  ├── FindHostTools.cmake
│  │  │  ├── dts.cmake
│  │  │  ├── extensions.cmake
│  │  │  │ kconfig.cmake
│  ├── doc
│  │  ├── services
│  │  │  ├── ipc
│  │  │  │  ├── ipc_service
│  │  │  │  │  ├── backends
│  │  │  │  │  │  ├── ipc_service_icbmsg.rst
│  │  │  │  │  │  │ ipc_service_icmsg.rst
│  │  │  ├── storage
│  │  │  │  ├── zms
│  │  │  │  │  │ zms.rst
│  ├── drivers
│  │  ├── clock_control
│  │  │  ├── Kconfig.nrf
│  │  │  │ clock_control_nrf2_hsfll.c
│  │  ├── modem
│  │  │  │ modem_cellular.c
│  ├── dts
│  │  ├── bindings
│  │  │  ├── ipc
│  │  │  │  │ zephyr,ipc-icmsg.yaml
│  │  ├── common
│  │  │  ├── nordic
│  │  │  │  │ nrf54l15.dtsi
│  ├── include
│  │  ├── zephyr
│  │  │  ├── fs
│  │  │  │  │ zms.h
│  ├── samples
│  │  ├── boards
│  │  │  ├── nordic
│  │  │  │  ├── clock_control
│  │  │  │  │  ├── configs
│  │  │  │  │  │  ├── cpuapp_hsfll.conf
│  │  │  │  │  │  ├── fll16m.conf
│  │  │  │  │  │  ├── lfclk.conf
│  │  │  │  │  │  │ uart135.conf
│  │  │  │  ├── nrf_sys_event
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  ├── subsys
│  │  │  ├── fs
│  │  │  │  ├── zms
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── ipc
│  │  │  │  ├── ipc_service
│  │  │  │  │  ├── icmsg
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_icbmsg.overlay
│  │  │  │  │  │  ├── remote
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuflpr.overlay
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuflpr_icbmsg.overlay
│  ├── soc
│  │  ├── nordic
│  │  │  ├── Kconfig.defconfig
│  │  │  ├── common
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── nrf_sys_event.c
│  │  │  │  │ nrf_sys_event.h
│  │  │  ├── nrf54h
│  │  │  │  │ power.c
│  ├── subsys
│  │  ├── fs
│  │  │  ├── zms
│  │  │  │  ├── Kconfig
│  │  │  │  ├── zms.c
│  │  │  │  │ zms_priv.h
│  │  ├── ipc
│  │  │  ├── ipc_service
│  │  │  │  ├── backends
│  │  │  │  │  │ ipc_icbmsg.c
│  ├── tests
│  │  ├── drivers
│  │  │  ├── clock_control
│  │  │  │  ├── nrf_clock_control
│  │  │  │  │  │ prj.conf
│  │  │  ├── i2s
│  │  │  │  ├── i2s_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  ├── i2s_speed
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  ├── subsys
│  │  │  ├── fs
│  │  │  │  ├── zms
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c

Outputs:

Toolchain

Version: add720b6d9
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:add720b6d9_912848a074

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

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ❌ Build twister
    • sdk-nrf test count: 1733
    • sdk-zephyr test count: 6266
  • ❌ Integration tests
    • ❌ test-sdk-audio
    • ❌ test-fw-nrfconnect-chip
    • ❌ test-fw-nrfconnect-nfc
    • ❌ test-fw-nrfconnect-nrf-iot_cloud
    • ❌ test-fw-nrfconnect-nrf-iot_thingy91
    • ❌ test-fw-nrfconnect-rpc
    • ❌ test-fw-nrfconnect-rs
    • ❌ test-fw-nrfconnect-fem
    • ❌ test-fw-nrfconnect-thread
    • ❌ test-sdk-find-my
    • ❌ test-sdk-sidewalk
    • ❌ test-low-level
    • ❌ 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-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_zephyr_lwm2m
    • test-fw-nrfconnect-nrf_crypto
    • test-fw-nrfconnect-proprietary_esb
    • test-fw-nrfconnect-tfm
    • test-fw-nrfconnect-zigbee
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-wifi

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

@NordicBuilder
Copy link
Contributor Author

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 Publishing GitHub Action.

@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2178 branch from 109da92 to 5304f7a Compare October 29, 2024 08:41
Automatically created by Github Action

Signed-off-by: Nordic Builder <[email protected]>
@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2178 branch from 5304f7a to 1063e58 Compare October 29, 2024 14:09
@NordicBuilder
Copy link
Contributor Author

Automatically closed by action-manifest-pr GH action

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-zephyr
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant