Skip to content

fix build error

fix build error #2

Workflow file for this run

name: C++ CI
on:
push:
branches:
- main
- 'dev_**'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/zephyrproject-rtos/ci:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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-latest
container:
image: ghcr.io/zephyrproject-rtos/ci:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Environment
run: python scripts/pipeline-setup.py
- name: Run Tests
run: west twister -T app/tests --integration