Skip to content

Commit 344475a

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 344475a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pr_push.yml

Lines changed: 3 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 }}
@@ -53,7 +55,7 @@ jobs:
5355
needs: [FastBuild]
5456
uses: ./.github/workflows/reusable_qemu.yml
5557
with:
56-
short_run: true
58+
short_run: ${{ github.event_name == 'schedule' && 'false' || 'true' }}
5759
Benchmarks:
5860
needs: [Build]
5961
uses: ./.github/workflows/reusable_benchmarks.yml

0 commit comments

Comments
 (0)