mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 10:40:21 +00:00
CI: fixed on schedule workflows
- run on schedule only in CESNET/UltraGrid repo - otherwise run only if pushing to respective branches - run Coverity scan earlier (4:00 UTC)
This commit is contained in:
2
.github/workflows/arm-build.yml
vendored
2
.github/workflows/arm-build.yml
vendored
@@ -9,7 +9,7 @@ on:
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
if: github.repository == 'CESNET/UltraGrid' || github.event.schedule != null
|
||||
if: github.repository == 'CESNET/UltraGrid' || github.event.schedule == null
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
|
||||
3
.github/workflows/coverity-scan.yml
vendored
3
.github/workflows/coverity-scan.yml
vendored
@@ -5,10 +5,11 @@ on:
|
||||
branches:
|
||||
- coverity_scan
|
||||
schedule:
|
||||
- cron: '0 6 20 * *' # 20th at 6:00 UTC
|
||||
- cron: '0 4 20 * *' # 20th at 4:00 UTC
|
||||
|
||||
jobs:
|
||||
Coverity:
|
||||
if: github.repository == 'CESNET/UltraGrid' || github.event.schedule == null
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
SDK_URL: ${{ secrets.SDK_URL }}
|
||||
|
||||
Reference in New Issue
Block a user