Skip to content

Commit

Permalink
Install boost-python via brew
Browse files Browse the repository at this point in the history
Signed-off-by: Larry Gritz <[email protected]>
  • Loading branch information
lgritz committed May 13, 2024
1 parent 84bace3 commit 5de54cf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ jobs:
run: |
# Confirm the python module loads. Query the site-packages directory and substitute ../_install
export PYTHONPATH=`python -c "import site; print('../_install%s' % site.USER_SITE[len(site.USER_BASE):])"`
export PYTHONPATH=$PYTHONPATH:$PWD/../_install/lib/python*/site-packages
export PYTHONPATH=$PYTHONPATH:$PWD/../_install/lib*/python*/site-packages
echo $PYTHONPATH
python -c "import imath;print(imath.__version__)"
# Make sure we can build the tests when configured as a
# standalone application linking against the just-installed
Expand Down Expand Up @@ -345,7 +346,8 @@ jobs:
mkdir _examples
- name: Install Dependences
run: |
brew --display-times -q install python
brew list --version
brew install --display-times -q boost-python3
## share/ci/scripts/macos/install_boost.sh
## shell: bash
- name: Configure
Expand All @@ -370,6 +372,8 @@ jobs:
run: |
# Confirm the python module loads. Query the site-packages directory and substitute ../_install
export PYTHONPATH=`python -c "import site; print('../_install%s' % site.USER_SITE[len(site.USER_BASE):])"`
export PYTHONPATH=$PYTHONPATH:$PWD/../_install/lib/python*/site-packages
echo $PYTHONPATH
python -c "import imath;print(imath.__version__)"
# Make sure we can build the tests when configured as a
# standalone application linking against the just-installed
Expand Down Expand Up @@ -526,7 +530,7 @@ jobs:
shell: bash
- name: Install Dependencies
run: |
time vcpkg install boost-thread:x64-windows
vcpkg install boost-python:x64-windows
# share/ci/scripts/windows/install_python.ps1 ${{ matrix.python-version }} $HOME
# share/ci/scripts/windows/install_boost.ps1 ${{ matrix.boost-version }} $HOME 3.8
# shell: powershell
Expand Down

0 comments on commit 5de54cf

Please sign in to comment.