@@ -120,6 +120,8 @@ jobs:
120120 inference-framework : trtllm
121121 test-data-path : ${{ needs.pre-flight.outputs.test_data_path }}
122122 runner : ${{ matrix.runner }}
123+ ngc-api-user : ${{ secrets.NGC_API_USER }}
124+ ngc-api-key : ${{ secrets.NGC_API_KEY }}
123125
124126 cicd-unit-tests-vllm :
125127 strategy :
@@ -160,6 +162,8 @@ jobs:
160162 inference-framework : vllm
161163 test-data-path : ${{ needs.pre-flight.outputs.test_data_path }}
162164 runner : ${{ matrix.runner }}
165+ ngc-api-user : ${{ secrets.NGC_API_USER }}
166+ ngc-api-key : ${{ secrets.NGC_API_KEY }}
163167
164168 cicd-e2e-tests-trtllm :
165169 strategy :
@@ -199,39 +203,43 @@ jobs:
199203 inference-framework : trtllm
200204 test-data-path : ${{ needs.pre-flight.outputs.test_data_path }}
201205 runner : ${{ matrix.runner }}
206+ ngc-api-user : ${{ secrets.NGC_API_USER }}
207+ ngc-api-key : ${{ secrets.NGC_API_KEY }}
202208
203- cicd-e2e-tests-trt-onnx :
204- needs : [cicd-unit-tests-trtllm, pre-flight]
205- runs-on : ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
206- name : ${{ matrix.is_optional && 'PLEASEFIXME_' || '' }}${{ matrix.script }}
207- environment : nemo-ci
208- if : |
209- (
210- success()
211- || (
212- needs.cicd-wait-in-queue.result == 'skipped'
213- && needs.pre-flight.outputs.is_ci_workload == 'true'
214- )
215- )
216- && !cancelled()
217- steps :
218- - name : Checkout
219- uses : actions/checkout@v4
220- - name : main
221- uses : ./.github/actions/test-template
222- with :
223- script : L2_ONNX_TRT
224- is_optional : ${{ matrix.is_optional || false }}
225- azure-client-id : ${{ secrets.AZURE_CLIENT_ID }}
226- azure-tenant-id : ${{ secrets.AZURE_TENANT_ID }}
227- azure-subscription-id : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
228- has-azure-credentials : true
229- is_unit_test : " false"
230- timeout : 60
231- PAT : ${{ secrets.PAT }}
232- inference-framework : trt-onnx
233- test-data-path : ${{ needs.pre-flight.outputs.test_data_path }}
234- runner : ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
209+ # cicd-e2e-tests-trt-onnx:
210+ # needs: [cicd-unit-tests-trtllm, pre-flight]
211+ # runs-on: ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
212+ # name: ${{ matrix.is_optional && 'PLEASEFIXME_' || '' }}${{ matrix.script }}
213+ # environment: nemo-ci
214+ # if: |
215+ # (
216+ # success()
217+ # || (
218+ # needs.cicd-wait-in-queue.result == 'skipped'
219+ # && needs.pre-flight.outputs.is_ci_workload == 'true'
220+ # )
221+ # )
222+ # && !cancelled()
223+ # steps:
224+ # - name: Checkout
225+ # uses: actions/checkout@v4
226+ # - name: main
227+ # uses: ./.github/actions/test-template
228+ # with:
229+ # script: L2_ONNX_TRT
230+ # is_optional: ${{ matrix.is_optional || false }}
231+ # azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
232+ # azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
233+ # azure-subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
234+ # has-azure-credentials: true
235+ # is_unit_test: "false"
236+ # timeout: 60
237+ # PAT: ${{ secrets.PAT }}
238+ # inference-framework: trt-onnx
239+ # test-data-path: ${{ needs.pre-flight.outputs.test_data_path }}
240+ # runner: ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
241+ # ngc-api-user: ${{ secrets.NGC_API_USER }}
242+ # ngc-api-key: ${{ secrets.NGC_API_KEY }}
235243
236244 cicd-e2e-tests-vllm :
237245 needs : [cicd-unit-tests-vllm, pre-flight]
@@ -263,6 +271,8 @@ jobs:
263271 inference-framework : vllm
264272 test-data-path : ${{ needs.pre-flight.outputs.test_data_path }}
265273 runner : ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
274+ ngc-api-user : ${{ secrets.NGC_API_USER }}
275+ ngc-api-key : ${{ secrets.NGC_API_KEY }}
266276
267277 cicd-e2e-tests-inframework :
268278 needs : [pre-flight, cicd-unit-tests-trtllm, cicd-unit-tests-vllm]
@@ -294,6 +304,8 @@ jobs:
294304 inference-framework : inframework
295305 test-data-path : ${{ needs.pre-flight.outputs.test_data_path }}
296306 runner : ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
307+ ngc-api-user : ${{ secrets.NGC_API_USER }}
308+ ngc-api-key : ${{ secrets.NGC_API_KEY }}
297309
298310 Nemo_CICD_Test :
299311 needs :
0 commit comments