Skip to content

Commit 660c3d9

Browse files
temp
Signed-off-by: Keval Morabia <[email protected]>
1 parent 9834826 commit 660c3d9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/gpu_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
jobs:
14-
check-changes:
14+
check-file-changes:
1515
runs-on: ubuntu-latest
1616
outputs:
1717
any_changed: ${{ steps.changed-tests.outputs.any_changed }}
@@ -32,8 +32,8 @@ jobs:
3232
setup.py
3333
base_sha: ${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.ref }}
3434
wait-checks:
35-
needs: [check-changes]
36-
if: needs.check-changes.outputs.any_changed == 'true'
35+
needs: [check-file-changes]
36+
if: needs.check-file-changes.outputs.any_changed == 'true'
3737
uses: ./.github/workflows/_wait_for_checks.yml
3838
permissions:
3939
checks: read
@@ -42,8 +42,8 @@ jobs:
4242
match_pattern: '^DCO$|^linux$' # Wait for DCO and Unit tests / linux to pass
4343
delay: 300s
4444
gpu-tests:
45-
needs: [check-changes, wait-checks]
46-
if: needs.check-changes.outputs.any_changed == 'true'
45+
needs: [check-file-changes, wait-checks]
46+
if: needs.check-file-changes.outputs.any_changed == 'true'
4747
# Runner list at https://github.com/nv-gha-runners/enterprise-runner-configuration/blob/main/docs/runner-groups.md
4848
runs-on: linux-amd64-gpu-h100-latest-1
4949
timeout-minutes: 60

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ concurrency:
2626
cancel-in-progress: true
2727

2828
jobs:
29-
wait-dco:
29+
check-dco:
3030
uses: ./.github/workflows/_wait_for_checks.yml
3131
permissions:
3232
checks: read
3333
secrets: inherit
3434
with:
3535
match_pattern: '^DCO$'
3636
linux:
37-
needs: [wait-dco]
37+
needs: [check-dco]
3838
runs-on: ubuntu-latest
3939
timeout-minutes: 30
4040
steps:

0 commit comments

Comments
 (0)