2021-04-18 18:57:45 +00:00
|
|
|
name: Build
|
|
|
|
|
2023-04-14 08:19:33 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
2021-04-18 18:57:45 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-05-03 14:56:39 +00:00
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
|
2021-10-08 11:11:18 +00:00
|
|
|
env:
|
|
|
|
CMAKE_PREFIX_PATH: /opt/toolchains
|
2021-04-18 18:57:45 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-04-17 08:25:38 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-04-18 18:57:45 +00:00
|
|
|
with:
|
|
|
|
path: example-application
|
|
|
|
|
|
|
|
- name: Initialize
|
|
|
|
working-directory: example-application
|
|
|
|
run: |
|
|
|
|
west init -l .
|
2023-08-11 23:32:36 +00:00
|
|
|
west update -o=--depth=1 -n
|
2021-04-18 18:57:45 +00:00
|
|
|
|
|
|
|
- name: Build firmware
|
|
|
|
working-directory: example-application
|
|
|
|
run: |
|
2023-05-03 15:17:19 +00:00
|
|
|
west twister -T app -v --inline-logs --integration
|
2021-04-18 18:57:45 +00:00
|
|
|
|
2022-11-19 14:54:27 +00:00
|
|
|
- name: Twister Tests
|
2021-05-21 01:49:09 +00:00
|
|
|
working-directory: example-application
|
|
|
|
run: |
|
2023-05-03 06:41:21 +00:00
|
|
|
west twister -T tests --integration
|