Skip to content

Commit 14412e6

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 20e2ec1 commit 14412e6

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/image.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ name: image
1818
on:
1919
push:
2020
branches:
21-
- main
22-
- "pull-request/[0-9]+"
23-
- release-*
21+
- precompiled-arm-support-no
2422

2523
jobs:
2624
image:

.github/workflows/precompiled.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,26 @@ jobs:
3737
id: extract_driver_branch
3838
run: |
3939
# get driver_branch
40-
DRIVER_BRANCH=("535" "570" "580")
40+
# DRIVER_BRANCH=("535" "570" "580")
41+
DRIVER_BRANCH=("580")
4142
driver_branch_json=$(printf '%s\n' "${DRIVER_BRANCH[@]}" | jq -R . | jq -cs .)
4243
echo "driver_branch=$driver_branch_json" >> $GITHUB_OUTPUT
4344
4445
# get kernel flavors
45-
KERNEL_FLAVORS=("aws" "azure" "azure-fde" "generic" "nvidia" "oracle")
46+
# KERNEL_FLAVORS=("aws" "azure" "azure-fde" "generic" "nvidia" "oracle")
47+
KERNEL_FLAVORS=("generic")
4648
kernel_flavors_json=$(printf '%s\n' "${KERNEL_FLAVORS[@]}" | jq -R . | jq -cs .)
4749
echo "kernel_flavors=$kernel_flavors_json" >> $GITHUB_OUTPUT
4850
4951
# get ubuntu distributions
50-
DIST=("ubuntu22.04" "ubuntu24.04")
52+
# DIST=("ubuntu22.04" "ubuntu24.04")
53+
DIST=("ubuntu24.04")
5154
dist_json=$(printf '%s\n' "${DIST[@]}" | jq -R . | jq -cs .)
5255
echo "dist=$dist_json" >> $GITHUB_OUTPUT
5356
5457
# LTS_KERNEL setup
55-
LTS_KERNEL=("5.15" "6.8")
58+
# LTS_KERNEL=("5.15" "6.8")
59+
LTS_KERNEL=("6.8")
5660
lts_kernel_json=$(printf '%s\n' "${LTS_KERNEL[@]}" | jq -R . | jq -cs .)
5761
echo "lts_kernel=$lts_kernel_json" >> $GITHUB_OUTPUT
5862

0 commit comments

Comments
 (0)