Skip to content

Commit

Permalink
Run coverage job on workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
grasci-arm authored Jan 30, 2024
1 parent a5bd02e commit d305a52
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/buildmgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
docs:
if: |
(github.event_name == 'pull_request') ||
(github.event_name == 'workflow_dispatch') ||
(github.event_name == 'push') ||
(github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/buildmgr/')) ||
((github.event.schedule != '') && (!github.event.repository.private))
Expand Down Expand Up @@ -447,6 +448,7 @@ jobs:
coverage:
if: |
(github.event_name == 'pull_request') ||
(github.event_name == 'workflow_dispatch') ||
(github.event_name == 'push') ||
(github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/buildmgr/')) ||
((github.event.schedule != '') && (!github.event.repository.private))
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
with:
pattern: coverage-report-*
path: coverage/
merge-multiple: true

- name: Consolidate coverage data
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/packchk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ jobs:
coverage:
if: |
(github.event_name == 'pull_request') ||
(github.event_name == 'workflow_dispatch') ||
(github.event_name == 'push') ||
(github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/packchk/')) ||
((github.event.schedule != '') && (!github.event.repository.private))
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/packgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ jobs:
coverage:
if: |
(github.event_name == 'pull_request') ||
(github.event_name == 'workflow_dispatch') ||
(github.event_name == 'push') ||
(github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/packgen/')) ||
((github.event.schedule != '') && (!github.event.repository.private))
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/projmgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ jobs:
coverage:
if: |
(github.event_name == 'pull_request') ||
(github.event_name == 'workflow_dispatch') ||
(github.event_name == 'push') ||
(github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/projmgr/')) ||
((github.event.schedule != '') && (!github.event.repository.private))
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/svdconv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ jobs:
coverage:
if: |
(github.event_name == 'pull_request') ||
(github.event_name == 'workflow_dispatch') ||
(github.event_name == 'push') ||
(github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/svdconv/')) ||
((github.event.schedule != '') && (!github.event.repository.private))
Expand Down

0 comments on commit d305a52

Please sign in to comment.