telem3-fw/.github/workflows/build.yml
Fabio Baltieri 5b7d55d281 ci: align the runner list with the main repository
Use the same runner list as the main repository ones. Originally I meant
to just add macos-14 so we cover macOS ARM, which is nice because it
runs on qemu-m0 from the brew package, but at this point let's also use
explicit version for the other runners too.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2024-02-08 11:01:47 +00:00

50 lines
1.3 KiB
YAML

name: Build
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12, macos-14, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: example-application
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@v1
with:
app-path: example-application
toolchains: arm-zephyr-eabi
- name: Build firmware
working-directory: example-application
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: Twister Tests
working-directory: example-application
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