Skip to content

Commit d851203

Browse files
committed
debug
1 parent 860b6da commit d851203

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build_osx.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ jobs:
6363
install_root=$(find ./IfcOpenShell/build -maxdepth 4 -name install)
6464
find "$install_root" -type f -name 'cache-*.tar.gz' -maxdepth 1 -exec tar -xzf {} -C "$install_root" \;
6565
66+
- name: Debug
67+
run: |
68+
base=$(find $PWD/IfcOpenShell/build -maxdepth 4 -name install)
69+
$base/python-3.9.11/bin/python3 --version
70+
$base/python-3.9.11/bin/python3 -c 'import sysconfig; print(sysconfig.get_path("platlib"))'
71+
6672
- name: Run IfcOpenShell Build Script
6773
run: |
6874
if [ "${{ matrix.os }}" == "macos" ]; then
@@ -72,7 +78,7 @@ jobs:
7278
7379
- name: Compile voxec
7480
run: |
75-
base=$(find ./IfcOpenShell/build -maxdepth 4 -name install)
81+
base=$(find $PWD/IfcOpenShell/build -maxdepth 4 -name install)
7682
mkdir build
7783
cd build
7884
cmake .. \

0 commit comments

Comments
 (0)