We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516408b commit 9850f8dCopy full SHA for 9850f8d
.github/workflows/build-debian.yml
@@ -172,12 +172,20 @@ jobs:
172
ninja doc
173
174
- name: Run Tests
175
- if: ${{ ! matrix.docs }}
+ if: ${{ ! matrix.docs }} && {matrix.os = 'debian-oldstable'}
176
run: |
177
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.x86_64.json
178
cd build
179
ctest --output-on-failure
180
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
+
189
- name: Upload Artifacts
190
if: ${{ ! matrix.docs }}
191
uses: actions/upload-artifact@v4
0 commit comments