16
16
name : Precompiled images
17
17
18
18
on :
19
- schedule :
20
- - cron : ' 00 09 * * *'
19
+ push :
20
+ branches :
21
+ - addsupport-580
21
22
22
23
jobs :
23
24
set-driver-version-matrix :
@@ -273,18 +274,18 @@ jobs:
273
274
274
275
# slack notification for new kernel release before e2e tests starts
275
276
# as e2e tests may fail for new kernel release
276
- - name : Slack notification
277
- if : steps.set_kernel_version.outputs.matrix_values_not_empty == '1'
278
-
279
- with :
280
- token : ${{ secrets.SLACK_BOT_TOKEN }}
281
- method : chat.postMessage
282
- payload : |
283
- {
284
- "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
285
- "text": "${{ secrets.DETECTED_PRECOMPILED_KERNEL_MESSAGE }} ${{ steps.set_kernel_version.outputs.published_kernels }} \n
286
- Details: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
287
- }
277
+ # - name: Slack notification
278
+ # if: steps.set_kernel_version.outputs.matrix_values_not_empty == '1'
279
+ # uses: slackapi/[email protected]
280
+ # with:
281
+ # token: ${{ secrets.SLACK_BOT_TOKEN }}
282
+ # method: chat.postMessage
283
+ # payload: |
284
+ # {
285
+ # "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
286
+ # "text": "${{ secrets.DETECTED_PRECOMPILED_KERNEL_MESSAGE }} ${{ steps.set_kernel_version.outputs.published_kernels }} \n
287
+ # Details: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
288
+ # }
288
289
289
290
e2e-tests-nvidiadriver :
290
291
runs-on : linux-amd64-cpu4
@@ -296,6 +297,7 @@ jobs:
296
297
matrix :
297
298
kernel_version : ${{ fromJson(needs.collect-e2e-test-matrix.outputs.matrix_values) }}
298
299
exclude : ${{ fromJson(needs.collect-e2e-test-matrix.outputs.exclude_matrix_values) }}
300
+ max-parallel : 6
299
301
steps :
300
302
- name : Check out code
301
303
uses : actions/checkout@v5
@@ -438,7 +440,7 @@ jobs:
438
440
image_path="./base-images-${{ matrix.driver_branch }}-${{ matrix.kernel_version }}.tar"
439
441
echo "uploading $image_path"
440
442
docker load -i $image_path
441
- docker push ${PRIVATE_REGISTRY}/nvidia/driver:base-${BASE_TARGET}-${LTS_KERNEL}-${KERNEL_FLAVOR}-${{ matrix.driver_branch }}
443
+ # docker push ${PRIVATE_REGISTRY}/nvidia/driver:base-${BASE_TARGET}-${LTS_KERNEL}-${KERNEL_FLAVOR}-${{ matrix.driver_branch }}
442
444
443
445
- name : Download built image artifact
444
446
if : ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
@@ -453,16 +455,16 @@ jobs:
453
455
image_path="./driver-images-${{ matrix.driver_branch }}-${{ matrix.kernel_version }}.tar"
454
456
echo "uploading $image_path"
455
457
docker load -i $image_path
456
- docker push ${PRIVATE_REGISTRY}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}
458
+ # docker push ${PRIVATE_REGISTRY}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}
457
459
458
- - name : Slack notification
459
- if : ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
460
-
461
- with :
462
- token : ${{ secrets.SLACK_BOT_TOKEN }}
463
- method : chat.postMessage
464
- payload : |
465
- {
466
- "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
467
- "text": "${{ secrets.PUBLISHED_PRECOMPILED_IMAGE_MESSAGE }} ${{ env.PRIVATE_REGISTRY }}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}"
468
- }
460
+ # - name: Slack notification
461
+ # if: ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
462
+ # uses: slackapi/[email protected]
463
+ # with:
464
+ # token: ${{ secrets.SLACK_BOT_TOKEN }}
465
+ # method: chat.postMessage
466
+ # payload: |
467
+ # {
468
+ # "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
469
+ # "text": "${{ secrets.PUBLISHED_PRECOMPILED_IMAGE_MESSAGE }} ${{ env.PRIVATE_REGISTRY }}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}"
470
+ # }
0 commit comments