Skip to content

Commit 728f30a

Browse files
cleanup
Signed-off-by: Keval Morabia <[email protected]>
1 parent 13554cb commit 728f30a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/example_tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: E2E Example tests
1+
name: Example tests
22

33
on:
44
push:
@@ -57,7 +57,7 @@ jobs:
5757
delay: 300s
5858

5959
##### PyTorch Example Tests #####
60-
example-torch-pr:
60+
torch-pr:
6161
needs: [check-file-changes, wait-checks]
6262
if: startsWith(github.ref, 'refs/heads/pull-request/') && needs.check-file-changes.outputs.any_changed == 'true'
6363
strategy:
@@ -71,7 +71,7 @@ jobs:
7171
pip_install_extras: "[hf,dev-test]"
7272
runner: linux-amd64-gpu-l4-latest-1
7373

74-
example-torch-non-pr:
74+
torch-non-pr:
7575
if: ${{ !startsWith(github.ref, 'refs/heads/pull-request/') }}
7676
strategy:
7777
matrix:
@@ -85,7 +85,7 @@ jobs:
8585
runner: linux-amd64-gpu-h100-latest-2
8686

8787
##### TensorRT-LLM Example Tests #####
88-
example-trtllm-pr:
88+
trtllm-pr:
8989
needs: [check-file-changes, wait-checks]
9090
if: startsWith(github.ref, 'refs/heads/pull-request/') && needs.check-file-changes.outputs.any_changed == 'true'
9191
strategy:
@@ -99,7 +99,7 @@ jobs:
9999
pip_install_extras: "[hf,dev-test]"
100100
runner: linux-amd64-gpu-h100-latest-1
101101

102-
example-trtllm-non-pr:
102+
trtllm-non-pr:
103103
if: ${{ !startsWith(github.ref, 'refs/heads/pull-request/') }}
104104
strategy:
105105
matrix:
@@ -113,7 +113,7 @@ jobs:
113113
runner: linux-amd64-gpu-h100-latest-2
114114

115115
##### ONNX/TensorRT Example Tests #####
116-
example-onnx-pr:
116+
onnx-pr:
117117
needs: [check-file-changes, wait-checks]
118118
if: startsWith(github.ref, 'refs/heads/pull-request/') && needs.check-file-changes.outputs.any_changed == 'true'
119119
strategy:
@@ -127,7 +127,7 @@ jobs:
127127
pip_install_extras: "[all,dev-test]"
128128
runner: linux-amd64-gpu-l4-latest-1
129129

130-
example-onnx-non-pr:
130+
onnx-non-pr:
131131
if: ${{ !startsWith(github.ref, 'refs/heads/pull-request/') }}
132132
strategy:
133133
matrix:
@@ -141,7 +141,7 @@ jobs:
141141
runner: linux-amd64-gpu-l4-latest-1
142142

143143
# TODO: convert test to pytest as well so we can remove this job
144-
example-onnx-bash-non-pr:
144+
onnx-bash-non-pr:
145145
if: ${{ !startsWith(github.ref, 'refs/heads/pull-request/') }}
146146
strategy:
147147
matrix:
@@ -160,15 +160,15 @@ jobs:
160160
example-pr-required-check:
161161
# Run even if example tests are skipped
162162
if: ${{ startsWith(github.ref, 'refs/heads/pull-request/') && always() }}
163-
needs: [check-file-changes, example-torch-pr, example-trtllm-pr, example-onnx-pr]
163+
needs: [check-file-changes, torch-pr, trtllm-pr, onnx-pr]
164164
runs-on: ubuntu-latest
165165
steps:
166166
- name: Required GPU tests did not succeed
167167
if: |
168168
needs.check-file-changes.result != 'success' ||
169169
(needs.check-file-changes.outputs.any_changed == 'true' && (
170-
needs.example-torch-pr.result != 'success' ||
171-
needs.example-trtllm-pr.result != 'success' ||
172-
needs.example-onnx-pr.result != 'success'
170+
needs.torch-pr.result != 'success' ||
171+
needs.trtllm-pr.result != 'success' ||
172+
needs.onnx-pr.result != 'success'
173173
))
174174
run: exit 1

0 commit comments

Comments
 (0)