Skip to content

Commit a570a29

Browse files
committed
Run pr_push on schedule at night to get full code coverage from QEMU
Signed-off-by: Lukasz Dorau <[email protected]>
1 parent 1f695ad commit a570a29

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/pr_push.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
branches-ignore:
88
- 'dependabot/**'
99
pull_request:
10+
schedule:
11+
- cron: '0 1 * * *'
1012

1113
concurrency:
1214
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -49,11 +51,18 @@ jobs:
4951
Sanitizers:
5052
needs: [FastBuild]
5153
uses: ./.github/workflows/reusable_sanitizers.yml
52-
QEMU:
54+
QEMU_short:
55+
if: github.event_name != 'schedule'
5356
needs: [FastBuild]
5457
uses: ./.github/workflows/reusable_qemu.yml
5558
with:
5659
short_run: true
60+
QEMU_full:
61+
if: github.event_name == 'schedule'
62+
needs: [FastBuild]
63+
uses: ./.github/workflows/reusable_qemu.yml
64+
with:
65+
short_run: false
5766
Benchmarks:
5867
needs: [Build]
5968
uses: ./.github/workflows/reusable_benchmarks.yml

0 commit comments

Comments
 (0)