We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 055bc7e commit 810af53Copy full SHA for 810af53
1 file changed
.github/workflows/build-debian.yml
@@ -172,15 +172,15 @@ jobs:
172
ninja doc
173
174
- name: Run Tests
175
- if: ${{ ! matrix.docs }} && {matrix.os = 'debian-oldstable'}
+ 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
183
- if: ${{ ! matrix.docs }} && {matrix.os = 'debian-stable'}
+ if: ${{ ! matrix.docs }} && {matrix.os == 'debian-stable'}
184
185
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.json
186
0 commit comments