Skip to content

fix build errors

fix build errors #6

Workflow file for this run

name: C++ CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.5
env:
CMAKE_PREFIX_PATH: /opt/toolchains
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Environment
run: python scripts/pipeline-setup.py
- name: Build
run: west build -b my_custom_board -s app -p
test:
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.5
env:
CMAKE_PREFIX_PATH: /opt/toolchains
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Environment
run: python scripts/pipeline-setup.py
- name: Run Tests
run: west twister -T app/tests --integration