Skip to content

Commit 9850f8d

Browse files
committed
Debian workflow: use correct Vulkan ICD path for llvmpipe on trixie. Fixes #884.
1 parent 516408b commit 9850f8d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build-debian.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,20 @@ jobs:
172172
ninja doc
173173
174174
- name: Run Tests
175-
if: ${{ ! matrix.docs }}
175+
if: ${{ ! matrix.docs }} && {matrix.os = 'debian-oldstable'}
176176
run: |
177177
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.x86_64.json
178178
cd build
179179
ctest --output-on-failure
180180
181+
# vulkan ICD path changed from bookworm to trixie so need to consider both
182+
- name: Run Tests
183+
if: ${{ ! matrix.docs }} && {matrix.os = 'debian-stable'}
184+
run: |
185+
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.json
186+
cd build
187+
ctest --output-on-failure
188+
181189
- name: Upload Artifacts
182190
if: ${{ ! matrix.docs }}
183191
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)