Skip to content

Commit 5a7c0a6

Browse files
committed
WIP: debugging info for ci test_pass
1 parent 01e5921 commit 5a7c0a6

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/pypi-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
- name: CMake Build
3737
run: cmake --build build --config Release
3838

39+
#FIXME: here we are probably missing to copy the dlls and pyds before building the wheel
40+
3941
- name: Build wheel
4042
run: |
4143
cd ${{github.workspace}}/src/gh/diffCheck/

.github/workflows/test-pass.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,23 @@ jobs:
4040
- name: CMake Build
4141
run: conda run --name diff_check --no-capture-output cmake --build build --config Release
4242

43+
# TODO: debug
44+
- name: List the files in the bin cpp
45+
run: |
46+
ls ${{github.workspace}}/build/bin/Release
47+
48+
# TODO: debug
49+
- name: List the files in the bin pybinds
50+
run: |
51+
ls ${{github.workspace}}/build/Release
52+
4353
- name: Copying the dlls
4454
run: |
4555
cp ${{github.workspace}}/build/bin/Release/diffCheck.dll ${{github.workspace}}/tests/integration_tests/pybinds_tests
4656
cp ${{github.workspace}}/build/bin/Release/Open3D.dll ${{github.workspace}}/tests/integration_tests/pybinds_tests
4757
cp ${{github.workspace}}/build/Release/*.pyd ${{github.workspace}}/tests/integration_tests/pybinds_tests
4858
59+
# TODO: debug
4960
- name: test if the dlls are copied
5061
run: |
5162
ls ${{github.workspace}}/tests/integration_tests/pybinds_tests

0 commit comments

Comments
 (0)