telem3-fw/.github/workflows/build.yml
Gerard Marull-Paretas 1941a63998 ci: build: update checkout/upload-artifact actions
These actions are triggering warnings about usage of deprecated features
(e.g. NodeJS 12). Use latest version of the actions.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2023-04-24 11:39:18 +00:00

42 lines
946 B
YAML

name: Build
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
container: zephyrprojectrtos/ci:latest
env:
CMAKE_PREFIX_PATH: /opt/toolchains
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: example-application
- name: Initialize
working-directory: example-application
run: |
west init -l .
west update
- name: Build firmware
working-directory: example-application
run: |
west build -b custom_plank app
- name: Twister Tests
working-directory: example-application
run: |
../zephyr/scripts/twister -G --board-root boards/ --testsuite-root ./tests/
- name: Archive firmware
uses: actions/upload-artifact@v3
with:
name: firmware
path: example-application/build/zephyr/zephyr.*