Skip to content

Commit 850a879

Browse files
committed
Add R580 support for precompiled driver
Signed-off-by: Shiva Kumar (SW-CLOUD) <[email protected]>
1 parent 6aac34f commit 850a879

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.common-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ trigger-pipeline:
9999
.driver-versions-precompiled-ubuntu22.04:
100100
parallel:
101101
matrix:
102-
- DRIVER_BRANCH: [535, 570]
102+
- DRIVER_BRANCH: [535, 570, 580]
103103
KERNEL_FLAVOR: [aws, azure, generic, nvidia, oracle]
104104
LTS_KERNEL: ["5.15"]
105105

106106
# Define the matrix of precompiled jobs that can be run in parallel for ubuntu24.04
107107
.driver-versions-precompiled-ubuntu24.04:
108108
parallel:
109109
matrix:
110-
- DRIVER_BRANCH: [570]
110+
- DRIVER_BRANCH: [570, 580]
111111
KERNEL_FLAVOR: [aws, azure, generic, nvidia, oracle]
112112
LTS_KERNEL: ["6.8"]
113113

.github/workflows/image.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ jobs:
107107
driver:
108108
- 535
109109
- 570
110+
- 580
110111
flavor:
111112
- aws
112113
- azure
@@ -134,6 +135,9 @@ jobs:
134135
dist: ubuntu24.04
135136
- lts_kernel: 5.15
136137
dist: ubuntu24.04
138+
# FIXME -- remove once we need to release 6.8 kernel for ubuntu22.04
139+
- lts_kernel: 6.8
140+
dist: ubuntu22.04
137141
steps:
138142
- uses: actions/checkout@v4
139143
name: Check out code

.github/workflows/precompiled.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: extract_driver_branch
3535
run: |
3636
# get driver_branch
37-
DRIVER_BRANCH=("535" "570")
37+
DRIVER_BRANCH=("535" "570", "580")
3838
driver_branch_json=$(printf '%s\n' "${DRIVER_BRANCH[@]}" | jq -R . | jq -cs .)
3939
echo "driver_branch=$driver_branch_json" >> $GITHUB_OUTPUT
4040
@@ -67,6 +67,9 @@ jobs:
6767
driver_branch: 535
6868
- lts_kernel: 5.15
6969
dist: ubuntu24.04
70+
# FIXME -- remove once we need to release 6.8 kernel for ubuntu22.04
71+
- lts_kernel: 6.8
72+
dist: ubuntu22.04
7073
steps:
7174
- uses: actions/checkout@v4
7275
name: Check out code

0 commit comments

Comments
 (0)