From 6c9fb767a67ea1053dd835e0cb2cd29e41a23ccc Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos-Pita Date: Wed, 7 Aug 2024 12:49:15 +0200 Subject: [PATCH] Set the LD_LIBRARY_PATH before building --- .github/workflows/python-wheels-emulated.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/python-wheels-emulated.yml b/.github/workflows/python-wheels-emulated.yml index 74b90389..e08db67f 100644 --- a/.github/workflows/python-wheels-emulated.yml +++ b/.github/workflows/python-wheels-emulated.yml @@ -46,6 +46,8 @@ jobs: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install -DEXTERNAL_EIGEN:BOOL=OFF -DPYTHON_WRAPPER:BOOL=OFF -DFORTRAN_WRAPPER:BOOL=OFF -DRUST_WRAPPER:BOOL=OFF -DUSE_VTK=ON -DMOORDYN_PACKAGE_IGNORE_VTK_DEPENDENCY=ON -DBUILD_TESTING=OFF -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 && cmake --build ${{github.workspace}}/build --config Release && cmake --install ${{github.workspace}}/build --config Release + CIBW_BEFORE_BUILD: > + export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:install/lib steps: - uses: actions/checkout@v4