fix build error #2
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: 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 |