Skip to content

Commit 810af53

Browse files
committed
Proper comparison for OS
1 parent 055bc7e commit 810af53

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-debian.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,15 +172,15 @@ jobs:
172172
ninja doc
173173
174174
- name: Run Tests
175-
if: ${{ ! matrix.docs }} && {matrix.os = 'debian-oldstable'}
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
181181
# vulkan ICD path changed from bookworm to trixie so need to consider both
182182
- name: Run Tests
183-
if: ${{ ! matrix.docs }} && {matrix.os = 'debian-stable'}
183+
if: ${{ ! matrix.docs }} && {matrix.os == 'debian-stable'}
184184
run: |
185185
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.json
186186
cd build

0 commit comments

Comments
 (0)