Skip to content

Commit ad88919

Browse files
committed
FIX: cpp build action
1 parent 62e03e7 commit ad88919

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/cpp-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
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

.github/workflows/test-pass.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,13 @@ jobs:
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: |

0 commit comments

Comments
 (0)