Skip to content

Commit 64083bf

Browse files
committed
WIP-CI: testing solution x14
1 parent 9a0fff3 commit 64083bf

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/test-pass.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,18 @@ jobs:
3535

3636
- name: Cmake Configure
3737
run: |
38-
conda run --name diff_check cmake -S . -B build -A x64 -DBUILD_PYTHON_MODULE=ON -DBUILD_TESTS=ON -DRUN_TESTS=ON
38+
conda run --name diff_check cmake -S . -B build -A x64 -DBUILD_PYTHON_MODULE=ON -DBUILD_TESTS=ON -DRUN_TESTS=OFF
3939
4040
- name: CMake Build
41-
run: conda run --name diff_check cmake --build build --config Release
41+
run: conda run --name diff_check cmake --build build --config Release
42+
43+
- name: Copying the dlls
44+
run: |
45+
cp build/bin/Release/diffCheck.dll tests/integration_tests/pybinds_tests
46+
cp build/bin/Release/Open3D.dll tests/integration_tests/pybinds_tests
47+
cp build/Release/*.pyd tests/integration_tests/pybinds_tests
48+
49+
- name: Run tests with cmake
50+
run: |
51+
cd build/
52+
ctest -C Release --verbose

0 commit comments

Comments
 (0)