Skip to content

Commit a33598e

Browse files
authored
fix: Do not run VisualSamples UI on CI (#1989)
1 parent dfc3ef9 commit a33598e

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

DirectProgramming/C++SYCL/VisualizedSamples/GameOfLife/sample.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@
1515
"cd build",
1616
"../get_sdl2.sh",
1717
"SDL2_DIR=SDL/install/ cmake ..",
18-
"make",
19-
"make run"
18+
"make"
2019
]
2120
}],
2221
"windows": [{
2322
"steps": [
2423
"MSBuild GameOfLife.sln /t:Rebuild /p:Configuration=\"Release\"",
25-
"cd x64/Release",
26-
"GameOfLife.exe"
24+
"cd x64/Release"
2725
]
2826
}]
2927

DirectProgramming/C++SYCL/VisualizedSamples/VisualMandlebrot/sample.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
"windows": [{
2222
"steps": [
2323
"MSBuild MandelbrotSDL.sln /t:Rebuild /p:Configuration=\"Release\"",
24-
"cd x64/Release",
25-
"MandelbrotSDL.exe"
24+
"cd x64/Release"
2625
]
2726
}]
2827

0 commit comments

Comments
 (0)