tests: crypto: psa_crypto: Refactor and add SiWx91x opaque tests #547
Workflow file for this run
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
| # SPDX-License-Identifier: Apache-2.0 | |
| # Copyright (c) 2025 Silicon Laboratories Inc. | |
| name: Build | |
| on: | |
| pull_request: | |
| types: | |
| - edited | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: zephyr-silabs | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Set up Silicon Labs tools | |
| uses: ./zephyr-silabs/.github/actions/action-slt-setup | |
| with: | |
| package-file: zephyr-silabs/pkg.slt | |
| - name: Setup Zephyr project | |
| uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
| with: | |
| app-path: zephyr-silabs | |
| toolchains: arm-zephyr-eabi | |
| - name: Fetch blobs | |
| shell: bash | |
| run: | | |
| west blobs fetch hal_silabs | |
| - name: Build Entropy test | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s drivers.entropy \ | |
| -p siwx917_rb4338a | |
| - name: Build Flash test | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs \ | |
| -s drivers.flash.common.default \ | |
| -p siwx917_rb4338a | |
| - name: Build DMA test | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs \ | |
| -s drivers.dma.chan_blen_transfer \ | |
| -p siwx917_rb4338a | |
| - name: Build Crypto tests | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs \ | |
| -p xg24_rb4187c \ | |
| -p xg27_dk2602a \ | |
| -p xg29_rb4412a \ | |
| -T zephyr-silabs/tests/crypto/ | |
| - name: Build Secure Storage samples | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s sample.psa.its.secure_storage.entropy_driver \ | |
| -p xg24_rb4187c \ | |
| -p bg29_rb4420a | |
| - name: Build bootloader samples | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s sample.sysbuild.with_mcuboot \ | |
| -p xg24_rb4187c \ | |
| -p xg27_rb4194a \ | |
| -p bg29_rb4420a | |
| - name: Build Bluetooth samples | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s sample.bluetooth.peripheral_hr \ | |
| -s sample.bluetooth.observer \ | |
| -p xg27_dk2602a \ | |
| -p siwx917_rb4338a | |
| - name: Build Prov sample | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s sample.bluetooth.wifi_provisioning_over_ble \ | |
| -T zephyr-silabs/samples\ | |
| -p siwx917_rb4338a | |
| - name: Build Wifi samples | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s sample.net.wifi \ | |
| -p siwx917_rb4338a | |
| west twister -v --inline-logs -K \ | |
| -s sample.net.wifi.siwx91x_offloaded \ | |
| -p siwx917_rb4338a | |
| - name: Build Coex sample | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs -K \ | |
| -s sample.bluetooth.wifi_ble_coex_demo \ | |
| -T zephyr-silabs/samples\ | |
| -p siwx917_rb4338a | |
| - name: Build Rail samples | |
| shell: bash | |
| run: | | |
| west twister -v --inline-logs \ | |
| -s sample.rail.simple_txrx -T zephyr-silabs/samples |