We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617e94c commit 7053e9eCopy full SHA for 7053e9e
1 file changed
.github/workflows/build-ubuntu.yml
@@ -144,8 +144,17 @@ jobs:
144
cd build
145
ninja doc
146
147
- - name: Run Tests
148
- if: ${{ ! matrix.docs }}
+ - name: Run Tests (Legacy Vulkan ICD path)
+ if: ${{ (! matrix.docs) && (matrix.os == 'ubuntu-22.04') }}
149
+ run: |
150
+ export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.x86_64.json
151
+ cd build
152
+ ls -lh /usr/share/vulkan/icd.d/
153
+ vulkaninfo
154
+ ctest --output-on-failure
155
+
156
+ - name: Run Tests (Modern Vulkan ICD path)
157
+ if: ${{ (! matrix.docs) && (matrix.os ~= 'ubuntu-22.04') }}
158
run: |
159
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.json
160
0 commit comments