forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (41 loc) · 1.33 KB
/
daily-tests.yml
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
51
52
53
54
55
56
57
---
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
name: Daily tests
# yamllint disable-line rule:truthy
on:
# To configure goto https://crontab.guru/
schedule:
# daily at 00:00 UTC
- cron: '0 0 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Keep in .yml alphabetical order
zephyr-stub-all:
uses: ./.github/workflows/build_all.yml
# TODO: separate "fetchPRcommits" which can't work in daily tests
# uses: ./.github/workflows/codestyle.yml
XTOS-make-install:
uses: ./.github/workflows/installer.yml
zephyr-fuzz-IPC:
uses: ./.github/workflows/ipc_fuzzer.yml
with:
fuzzing_duration_s: 300
# A legacy, semi-random mix
main-PR-workflows:
uses: ./.github/workflows/pull-request.yml
XTOS-reproducible:
uses: ./.github/workflows/repro-build.yml
rimage:
uses: ./.github/workflows/rimage.yml
zephyr-sparse-analyzer:
uses: ./.github/workflows/sparse-zephyr.yml
user-space-testbench:
uses: ./.github/workflows/testbench.yml
user-space-other-tools:
uses: ./.github/workflows/tools.yml
cmocka-unit-tests:
uses: ./.github/workflows/unit-tests.yml
zephyr-builds:
uses: ./.github/workflows/zephyr.yml