File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2323 cmake -S . -B build -A x64 -DBUILD_PYTHON_MODULE=OFF -DBUILD_TESTS=OFF -DRUN_TESTS=OFF
2424
2525 - name : CMake Build
26- run : ${{github.workspace}}/ cmake/ build.bat
26+ run : cmake -- build build --config Release
Original file line number Diff line number Diff line change 4242
4343 - name : Copying the dlls
4444 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
45+ cp ${{github.workspace}}/build/bin/Release/diffCheck.dll ${{github.workspace}}/tests/integration_tests/pybinds_tests
46+ cp ${{github.workspace}}/build/bin/Release/Open3D.dll ${{github.workspace}}/tests/integration_tests/pybinds_tests
47+ cp ${{github.workspace}}/build/Release/*.pyd ${{github.workspace}}/tests/integration_tests/pybinds_tests
48+
49+ - name : test if the dlls are copied
50+ run : |
51+ ls ${{github.workspace}}/tests/integration_tests/pybinds_tests
4852
4953 - name : Run tests with cmake
5054 run : |
You can’t perform that action at this time.
0 commit comments