Fixes/timer and sensors api fixes #88
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: zephyr-xlarge-runner | |
container: | |
image: ghcr.io/zephyrproject-rtos/ci:v0.26-branch | |
options: --user root | |
steps: | |
- name: Cleanup workspace | |
uses: eviden-actions/clean-self-hosted-runner@v1 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: application | |
- name: Setup Zephyr project | |
uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
with: | |
app-path: application | |
sdk-version: 0.16.8 | |
- name: Build native_sim | |
run: | | |
west build --pristine -b native_sim ./application -d build -- -DMODULE_EXT_ROOT=$(pwd)/application | |
- name: Build b_u585i_iot02a | |
if: runner.environment == 'self-hosted' | |
run: | | |
west build --pristine -b b_u585i_iot02a ./application -d build -- -DMODULE_EXT_ROOT=$(pwd)/application | |
- name: Upload firmware artifact | |
if: runner.environment == 'self-hosted' && job.status == 'success' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firmware | |
path: build/zephyr/zephyr.bin | |
flash: | |
needs: build | |
runs-on: zephyr-xlarge-runner | |
steps: | |
- name: Download firmware | |
if: runner.environment == 'self-hosted' | |
uses: actions/download-artifact@v4 | |
with: | |
name: firmware | |
- name: Flash b_u585i_iot02a | |
if: runner.environment == 'self-hosted' | |
run: | | |
STM32_Programmer_CLI -c port=swd -w zephyr.bin 0x08000000 -v -rst |