-
Notifications
You must be signed in to change notification settings - Fork 209
34 lines (34 loc) · 1.15 KB
/
on_nightly.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
name: On Nightly
on:
workflow_dispatch:
schedule:
- cron: 30 11 * * *
- cron: 0 3 * * *
jobs:
tests:
uses: ./.github/workflows/coverage_report_clusterfuzz.yml
secrets: inherit
if: ${{ github.event_name == 'workflow_dispatch' || github.event.schedule == '30 11 * * *' }}
coverage-report:
uses: ./.github/workflows/coverage_report.yml
secrets: inherit
if: ${{ github.event_name == 'workflow_dispatch' || github.event.schedule == '30 11 * * *' }}
codeql:
uses: ./.github/workflows/codeql.yml
permissions:
security-events: write
if: ${{ github.event_name == 'workflow_dispatch' || github.event.schedule == '30 11 * * *' }}
builds:
uses: ./.github/workflows/builds.yml
with:
# compiler,machine,target
gcc_exceptions: |
ALL,linux_gcc_power9,ALL;
ALL,linux_gcc_arm_n1,ALL;
gcc-8.5.0,linux_gcc_zen2;ALL;
gcc-8.5.0,linux_gcc_zen4;ALL;
gcc-9.5.0,linux_gcc_zen4;ALL;
gcc-10.5.0,linux_gcc_zen4,ALL;
gcc-11.4.0,linux_gcc_zen4,ALL
verbose: true
if: ${{ github.event_name == 'workflow_dispatch' || github.event.schedule == '0 3 * * *' }}