app: add console harness and run simple firmware boot test in CI #265
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: | |
pull_request: | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04, macos-13, macos-14, windows-2022] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: cannectivity | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Setup Zephyr project | |
uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
with: | |
app-path: cannectivity | |
toolchains: arm-zephyr-eabi | |
- name: Build firmware | |
working-directory: cannectivity | |
shell: bash | |
run: | | |
if [ "${{ runner.os }}" = "Windows" ]; then | |
EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" | |
fi | |
west twister -T app -v --inline-logs --integration $EXTRA_TWISTER_FLAGS | |
- name: Run firmware tests | |
working-directory: cannectivity | |
if: startsWith(runner.os, 'Linux') | |
shell: bash | |
run: | | |
west twister -T app -v --inline-logs --platform native_sim/native/64 | |
- name: Run tests | |
working-directory: cannectivity | |
shell: bash | |
run: | | |
if [ "${{ runner.os }}" = "Windows" ]; then | |
EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" | |
fi | |
west twister -T tests -v --inline-logs --integration $EXTRA_TWISTER_FLAGS |