Skip to content

Commit

Permalink
Revert "add overall status jobs"
Browse files Browse the repository at this point in the history
This reverts commit eb4e1d7.
  • Loading branch information
akashchi committed May 27, 2024
1 parent eb4e1d7 commit 5becf3f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 43 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@ name: Linux (Ubuntu 20.04, Python 3.11)
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'modules/nvidia_plugin'
- 'modules/openvino_code'
push:
branches:
- master
- 'releases/**'
paths-ignore:
- 'modules/nvidia_plugin'
- 'modules/openvino_code'

concurrency:
# github.ref is not unique in post-commit
Expand Down Expand Up @@ -325,17 +331,3 @@ jobs:
- name: Show ccache stats
run: ccache --show-stats

Overall_Status:
name: ci/gha_overall_status_linux
needs: [ Build_and_test, NVIDIA_Plugin ]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Check status of all jobs
if: >-
${{
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
}}
run: exit 1
14 changes: 0 additions & 14 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,17 +147,3 @@ jobs:
name: test-results-java
path: ${{ env.OPENVINO_CONTRIB_REPO }}/modules/java_api/build/test-results
if-no-files-found: 'warn'

Overall_Status:
name: ci/gha_overall_status_mac
needs: [ Build_and_test ]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Check status of all jobs
if: >-
${{
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
}}
run: exit 1
16 changes: 1 addition & 15 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,4 @@ jobs:
with:
name: test-results-java
path: ${{ env.OPENVINO_CONTRIB_REPO }}/modules/java_api/build/test-results
if-no-files-found: 'warn'

Overall_Status:
name: ci/gha_overall_status_windows
needs: [ Build_and_test ]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Check status of all jobs
if: >-
${{
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
}}
run: exit 1
if-no-files-found: 'warn'

0 comments on commit 5becf3f

Please sign in to comment.