Skip to content

flash loader: Use malloc for RTT buffers to not affect RAM usage in n… #158

flash loader: Use malloc for RTT buffers to not affect RAM usage in n…

flash loader: Use malloc for RTT buffers to not affect RAM usage in n… #158

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
env:
CMAKE_PREFIX_PATH: /opt/toolchains
strategy:
matrix:
built_type: [debug, release]
board: [zswatch_nrf5340_cpuapp@1, zswatch_nrf5340_cpuapp@3, native_posix]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: ZSWatch
submodules: recursive
- name: Initialize
working-directory: ZSWatch
run: |
west init -l app
west update -o=--depth=1 -n
- name: Build firmware
working-directory: ZSWatch
run: |
west build app -p -b ${{ matrix.board }} -- -DOVERLAY_CONFIG=boards/${{ matrix.built_type }}.conf