-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (44 loc) · 1.16 KB
/
twister-apps-samples.yml
File metadata and controls
50 lines (44 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright (c) 2016-2025 Makerdiary <https://makerdiary.com>
name: Twister Apps & Samples
on:
push:
paths:
- 'applications/**'
- 'boards/**'
- 'samples/**'
- 'zephyr/**'
- 'CMakeLists.txt'
- 'Kconfig'
- 'VERSION'
- 'west.yml'
pull_request:
schedule:
# Run at 03:00 UTC on every Sunday
- cron: "0 3 * * 0"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: nrf9151-connectkit
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@v1
with:
app-path: nrf9151-connectkit
toolchains: arm-zephyr-eabi
- name: Twister Applications
working-directory: nrf9151-connectkit
shell: bash
run: |
west twister -T applications -v --inline-logs --integration
- name: Twister Samples
working-directory: nrf9151-connectkit
shell: bash
run: |
west twister -T samples -v --inline-logs --integration