drivers: dma: siwx917: Add DMA driver #197
Workflow file for this run
This file contains 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
name: Build | |
on: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
build: | |
runs-on: ubuntu-22.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.11 | |
- name: Install Silabs-specific python dependencies | |
run: | | |
pip3 install crc | |
- name: Setup Zephyr project | |
uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
with: | |
app-path: zephyr-silabs | |
toolchains: arm-zephyr-eabi | |
- name: Fetch blobs | |
working-directory: zephyr-silabs | |
shell: bash | |
run: | | |
west blobs fetch hal_silabs | |
- name: Build Entropy test | |
working-directory: zephyr-silabs | |
shell: bash | |
run: | | |
west twister -s drivers.entropy -p siwx917_rb4338a -v --inline-logs | |
- name: Build Bluetooth samples | |
working-directory: zephyr-silabs | |
shell: bash | |
run: | | |
west twister -s sample.bluetooth.peripheral_hr -p siwx917_rb4338a -v --inline-logs -K | |
- name: Build Rail samples | |
working-directory: zephyr-silabs | |
shell: bash | |
run: | | |
west twister -s sample.rail.simple_txrx -T samples -v --inline-logs | |
- name: Build Wifi samples | |
working-directory: zephyr-silabs | |
shell: bash | |
run: | | |
west twister -s sample.net.wifi -p siwx917_rb4338a -v --inline-logs -K |