Skip to content

Commit

Permalink
ci: use the zephyr-setup action
Browse files Browse the repository at this point in the history
Use the standard generic GitHub images for the run and the zephyr-setup
action, run the build on both Linux, macOS and Windows.

Signed-off-by: Fabio Baltieri <[email protected]>
  • Loading branch information
fabiobaltieri committed Jan 2, 2024
1 parent c2ed36f commit 9b4396a
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,42 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
env:
CMAKE_PREFIX_PATH: /opt/toolchains
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: example-application

- name: Initialize
working-directory: example-application
run: |
west init -l .
west update -o=--depth=1 -n
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Setup Zephyr project
uses: fabiobaltieri/zephyr-setup@main
with:
app-path: example-application
toolchains: arm-zephyr-eabi

- name: Build firmware
working-directory: example-application
shell: bash
run: |
west twister -T app -v --inline-logs --integration
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: |
west twister -T tests --integration
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

0 comments on commit 9b4396a

Please sign in to comment.