Files
mellifera_firmware/.github/workflows/build.yml
Brendan Haines 802d90bd02
Some checks failed
Build / build (ubuntu-22.04) (push) Failing after 2m8s
Documentation / build (push) Successful in 24s
Update .github/workflows/build.yml
don't run build.yml as a cron job
2024-07-03 17:31:50 -06:00

49 lines
1.3 KiB
YAML

name: Build
on:
push:
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
# os: [ubuntu-22.04, macos-12, macos-14, windows-2022]
os: [ubuntu-22.04]
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@main
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