Skip to content

Commit

Permalink
.github: run all workflows in daily tests
Browse files Browse the repository at this point in the history
Not sure why we didn't do this sooner

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
  • Loading branch information
marc-hb committed Dec 5, 2023
1 parent af57515 commit 3f9ca38
Showing 1 changed file with 39 additions and 4 deletions.
43 changes: 39 additions & 4 deletions .github/workflows/daily-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,44 @@ on:
workflow_dispatch:

jobs:
run-all-main-actions:

# 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: 1800

# A legacy, semi-random mix
main-PR-workflows:
uses: ./.github/workflows/pull-request.yml
run-zephyr-builds:
uses: ./.github/workflows/zephyr.yml
sparse-zephyr:

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

0 comments on commit 3f9ca38

Please sign in to comment.