Skip to content

Commit 31d724d

Browse files
committed
Disable it on all platforms
1 parent 9d95085 commit 31d724d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/samples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
& $exePath demo-stream-producer-cpp-${{ matrix.runner.id }}-ci-${{ matrix.sample.name }} ${{ matrix.sample.args }} ${{ matrix.sample.metadata_args }}
177177
178178
- name: Verify MKV dump exists (Mac & Linux)
179-
if: runner.os == 'Linux' || runner.os == 'macOS'
179+
if: (runner.os == 'Linux' || runner.os == 'macOS') && matrix.sample.name != 'kvssink_intermittent_sample'
180180
working-directory: ./build/debug_output
181181
run: |
182182
shopt -s nullglob # Ensure globbing works correctly and avoids errors when no files are found
@@ -195,7 +195,7 @@ jobs:
195195
shell: bash
196196

197197
- name: Verify MKV dump exists (Windows)
198-
if: runner.os == 'Windows'
198+
if: runner.os == 'Windows' && matrix.sample.name != 'kvssink_intermittent_sample'
199199
working-directory: D:\producer\build
200200
run: |
201201
$env:Path += ";C:\Program Files\MKVToolNix"

0 commit comments

Comments
 (0)