Skip to content

Commit 8611a2d

Browse files
Copilot0xrinegade
andcommitted
Fix C++ SDK integration test execution for Windows CI builds
Co-authored-by: 0xrinegade <[email protected]>
1 parent 9d0341e commit 8611a2d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/cpp_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
shell: pwsh
172172
run: |
173173
cd cpp_sdk/build
174-
ctest --verbose --output-on-failure
174+
ctest --verbose --output-on-failure --build-config ${{ matrix.build-type }}
175175
176176
- name: Run tests (Unix)
177177
if: matrix.os != 'windows-latest'

cpp_sdk/tests/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ add_test(NAME integration_tests
4848
set_tests_properties(integration_tests PROPERTIES
4949
LABELS "integration"
5050
TIMEOUT 300
51+
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
5152
)

0 commit comments

Comments
 (0)