We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8a378b commit 0a758d7Copy full SHA for 0a758d7
.github/workflows/test.yml
@@ -8,6 +8,7 @@ on:
8
9
jobs:
10
test-macos:
11
+ if: false
12
runs-on: macos-latest
13
steps:
14
- uses: actions/checkout@v3
@@ -61,4 +62,9 @@ jobs:
61
62
run: cmake --build build --config Release
63
64
- name: Test
- run: build/bin/Release/RobotCPPSDLTest.exe --gtest_filter=-*InteractiveMode --ci-mode true
65
+ run: |
66
+ # Copy SDL2 DLL to the executable directory
67
+ Copy-Item vcpkg\installed\x64-windows\bin\SDL2.dll build\bin\Release\
68
+
69
+ # Use Windows-style path with .\ prefix
70
+ .\build\bin\Release\RobotCPPSDLTest.exe --gtest_filter=-*InteractiveMode --ci-mode true
0 commit comments