Skip to content

Commit 20e2ec1

Browse files
Shiva Kumarshivakunv
authored andcommitted
Support Data Center precompiled driver container for Arm (Ubuntu 24.04)
Signed-off-by: Shiva Kumar (SW-CLOUD) <[email protected]>
1 parent b9fc783 commit 20e2ec1

File tree

1 file changed

+28
-25
lines changed

1 file changed

+28
-25
lines changed

.github/workflows/precompiled.yaml

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
name: Precompiled images
1717

1818
on:
19+
push:
20+
branches:
21+
- precompiled-arm-support
1922
schedule:
2023
- cron: '00 09 * * *'
2124

@@ -279,18 +282,18 @@ jobs:
279282
280283
# slack notification for new kernel release before e2e tests starts
281284
# as e2e tests may fail for new kernel release
282-
- name: Slack notification
283-
if: steps.set_kernel_version.outputs.matrix_values_not_empty == '1'
284-
uses: slackapi/[email protected]
285-
with:
286-
token: ${{ secrets.SLACK_BOT_TOKEN }}
287-
method: chat.postMessage
288-
payload: |
289-
{
290-
"channel": "${{ secrets.SLACK_CHANNEL_ID }}",
291-
"text": "${{ secrets.DETECTED_PRECOMPILED_KERNEL_MESSAGE }} ${{ steps.set_kernel_version.outputs.published_kernels }} \n
292-
Details: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
293-
}
285+
# - name: Slack notification
286+
# if: steps.set_kernel_version.outputs.matrix_values_not_empty == '1'
287+
# uses: slackapi/[email protected]
288+
# with:
289+
# token: ${{ secrets.SLACK_BOT_TOKEN }}
290+
# method: chat.postMessage
291+
# payload: |
292+
# {
293+
# "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
294+
# "text": "${{ secrets.DETECTED_PRECOMPILED_KERNEL_MESSAGE }} ${{ steps.set_kernel_version.outputs.published_kernels }} \n
295+
# Details: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
296+
# }
294297

295298
e2e-tests-nvidiadriver:
296299
runs-on: linux-amd64-cpu4
@@ -445,7 +448,7 @@ jobs:
445448
image_path="./base-images-${{ matrix.driver_branch }}-${{ matrix.kernel_version }}.tar"
446449
echo "uploading $image_path"
447450
docker load -i $image_path
448-
docker push ${PRIVATE_REGISTRY}/nvidia/driver:base-${BASE_TARGET}-${LTS_KERNEL}-${KERNEL_FLAVOR}-${{ matrix.driver_branch }}
451+
# docker push ${PRIVATE_REGISTRY}/nvidia/driver:base-${BASE_TARGET}-${LTS_KERNEL}-${KERNEL_FLAVOR}-${{ matrix.driver_branch }}
449452
450453
- name: Download built image artifact
451454
if: ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
@@ -460,16 +463,16 @@ jobs:
460463
image_path="./driver-images-${{ matrix.driver_branch }}-${{ matrix.kernel_version }}.tar"
461464
echo "uploading $image_path"
462465
docker load -i $image_path
463-
docker push ${PRIVATE_REGISTRY}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}
466+
# docker push ${PRIVATE_REGISTRY}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}
464467
465-
- name: Slack notification
466-
if: ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
467-
uses: slackapi/[email protected]
468-
with:
469-
token: ${{ secrets.SLACK_BOT_TOKEN }}
470-
method: chat.postMessage
471-
payload: |
472-
{
473-
"channel": "${{ secrets.SLACK_CHANNEL_ID }}",
474-
"text": "${{ secrets.PUBLISHED_PRECOMPILED_IMAGE_MESSAGE }} ${{ env.PRIVATE_REGISTRY }}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}"
475-
}
468+
# - name: Slack notification
469+
# if: ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
470+
# uses: slackapi/[email protected]
471+
# with:
472+
# token: ${{ secrets.SLACK_BOT_TOKEN }}
473+
# method: chat.postMessage
474+
# payload: |
475+
# {
476+
# "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
477+
# "text": "${{ secrets.PUBLISHED_PRECOMPILED_IMAGE_MESSAGE }} ${{ env.PRIVATE_REGISTRY }}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }}"
478+
# }

0 commit comments

Comments
 (0)