Skip to content

Commit 32e68a1

Browse files
Shiva Kumarshivakunv
authored andcommitted
Support Data Center precompiled driver container for Arm (Ubuntu 24.04)
Signed-off-by: Shiva Kumar (SW-CLOUD) <shivaku@nvidia.com>
1 parent 752858c commit 32e68a1

File tree

1 file changed

+25
-23
lines changed

1 file changed

+25
-23
lines changed

.github/workflows/precompiled.yaml

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -307,18 +307,18 @@ jobs:
307307
308308
# slack notification for new kernel release before e2e tests starts
309309
# as e2e tests may fail for new kernel release
310-
- name: Slack notification
311-
if: steps.set_kernel_version.outputs.matrix_values_not_empty == '1'
312-
uses: slackapi/slack-github-action@v2.1.1
313-
with:
314-
token: ${{ secrets.SLACK_BOT_TOKEN }}
315-
method: chat.postMessage
316-
payload: |
317-
{
318-
"channel": "${{ secrets.SLACK_CHANNEL_ID }}",
319-
"text": "${{ secrets.DETECTED_PRECOMPILED_KERNEL_MESSAGE }} ${{ steps.set_kernel_version.outputs.published_kernels }} \n
320-
Details: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
321-
}
310+
# - name: Slack notification
311+
# if: steps.set_kernel_version.outputs.matrix_values_not_empty == '1'
312+
# uses: slackapi/slack-github-action@v2.1.1
313+
# with:
314+
# token: ${{ secrets.SLACK_BOT_TOKEN }}
315+
# method: chat.postMessage
316+
# payload: |
317+
# {
318+
# "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
319+
# "text": "${{ secrets.DETECTED_PRECOMPILED_KERNEL_MESSAGE }} ${{ steps.set_kernel_version.outputs.published_kernels }} \n
320+
# Details: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
321+
# }
322322

323323
e2e-tests-nvidiadriver:
324324
runs-on: linux-amd64-cpu4
@@ -504,6 +504,7 @@ jobs:
504504
echo "uploading $image_path"
505505
docker load -i $image_path
506506
BASE_IMAGE_TAG="${PRIVATE_REGISTRY}/nvidia/driver:base-${BASE_TARGET}-${LTS_KERNEL}-${KERNEL_FLAVOR}-${{ matrix.driver_branch }}"
507+
docker tag ${BASE_IMAGE_TAG} ${BASE_IMAGE_TAG}-${{ env.PLATFORM_NAME }}
507508
docker push "${BASE_IMAGE_TAG}-${{ env.PLATFORM_NAME }}"
508509
docker buildx imagetools create -t "${BASE_IMAGE_TAG}" --append "${BASE_IMAGE_TAG}-${{ env.PLATFORM_NAME }}" || docker buildx imagetools create -t "${BASE_IMAGE_TAG}" "${BASE_IMAGE_TAG}-${{ env.PLATFORM_NAME }}"
509510
@@ -521,17 +522,18 @@ jobs:
521522
echo "uploading $image_path"
522523
docker load -i $image_path
523524
DRIVER_IMAGE_TAG="${PRIVATE_REGISTRY}/nvidia/driver:${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}"
525+
docker tag ${DRIVER_IMAGE_TAG} ${DRIVER_IMAGE_TAG}-${{ env.PLATFORM_NAME }}
524526
docker push "${DRIVER_IMAGE_TAG}-${{ env.PLATFORM_NAME }}"
525527
docker buildx imagetools create -t "${DRIVER_IMAGE_TAG}" --append "${DRIVER_IMAGE_TAG}-${{ env.PLATFORM_NAME }}" || docker buildx imagetools create -t "${DRIVER_IMAGE_TAG}" "${DRIVER_IMAGE_TAG}-${{ env.PLATFORM_NAME }}"
526528
527-
- name: Slack notification
528-
if: ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
529-
uses: slackapi/slack-github-action@v2.1.1
530-
with:
531-
token: ${{ secrets.SLACK_BOT_TOKEN }}
532-
method: chat.postMessage
533-
payload: |
534-
{
535-
"channel": "${{ secrets.SLACK_CHANNEL_ID }}",
536-
"text": "${{ secrets.PUBLISHED_PRECOMPILED_IMAGE_MESSAGE }} ${{ env.PRIVATE_REGISTRY }}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }} for platform ${{ env.PLATFORM_NAME }}"
537-
}
529+
# - name: Slack notification
530+
# if: ${{ ! (matrix.driver_branch == 535 && contains(matrix.kernel_version, 'ubuntu24.04')) }}
531+
# uses: slackapi/slack-github-action@v2.1.1
532+
# with:
533+
# token: ${{ secrets.SLACK_BOT_TOKEN }}
534+
# method: chat.postMessage
535+
# payload: |
536+
# {
537+
# "channel": "${{ secrets.SLACK_CHANNEL_ID }}",
538+
# "text": "${{ secrets.PUBLISHED_PRECOMPILED_IMAGE_MESSAGE }} ${{ env.PRIVATE_REGISTRY }}/nvidia/driver:${{ matrix.driver_branch }}-${{ matrix.kernel_version }} for platform ${{ env.PLATFORM_NAME }}"
539+
# }

0 commit comments

Comments
 (0)