563db50f57
It's not useful, just wastes time/space for nothing. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
36 lines
746 B
YAML
36 lines
746 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
|
|
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: |
|
|
west twister -T tests --integration
|