Skip to content

Commit 61e9bef

Browse files
committed
Add conda directory structure to Windows debug output
Show CONDA_PREFIX and Library/bin DLL contents to understand conda's Windows directory layout without guessing.
1 parent 4c05a6f commit 61e9bef

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/test-matrix.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ jobs:
7373
find build-install -name "*.pyd" -o -name "pyslicutlet*" || echo "No .pyd files found"
7474
echo "=== Searching for DLL files ==="
7575
find build-install -name "*.dll" -o -name "libslicutlet*" || echo "No DLL files found"
76+
echo "=== Conda prefix ==="
77+
echo "CONDA_PREFIX=$CONDA_PREFIX"
78+
echo "=== Conda Library structure ==="
79+
ls -la "$CONDA_PREFIX/Library/" || echo "No Library directory"
80+
echo "=== Conda Library/bin DLLs (first 20) ==="
81+
ls "$CONDA_PREFIX/Library/bin/"*.dll 2>/dev/null | head -20 || echo "No DLLs in Library/bin"
7682
7783
- name: Run tests
7884
shell: bash -l {0}

.github/workflows/test-windows.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ jobs:
5353
find build-install -name "*.pyd" -o -name "pyslicutlet*" || echo "No .pyd files found"
5454
echo "=== Searching for DLL files ==="
5555
find build-install -name "*.dll" -o -name "libslicutlet*" || echo "No DLL files found"
56+
echo "=== Conda prefix ==="
57+
echo "CONDA_PREFIX=$CONDA_PREFIX"
58+
echo "=== Conda Library structure ==="
59+
ls -la "$CONDA_PREFIX/Library/" || echo "No Library directory"
60+
echo "=== Conda Library/bin DLLs (first 20) ==="
61+
ls "$CONDA_PREFIX/Library/bin/"*.dll 2>/dev/null | head -20 || echo "No DLLs in Library/bin"
5662
5763
- name: Run tests
5864
shell: bash -l {0}

0 commit comments

Comments
 (0)