From c4f703213864469c304a63d41d7117b21899fe12 Mon Sep 17 00:00:00 2001 From: Giulio Romualdi Date: Fri, 16 Dec 2022 22:31:49 +0100 Subject: [PATCH] Extend the LD_LYBRARY_PATH in Ubuntu CI --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f33df2b48..805e75b366 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -516,10 +516,11 @@ jobs: echo "Default interpreter: $(which python)" python3 -c 'import sys; print(sys.prefix)' - - name: Extend the pythonpath [Ubuntu] + - name: Extend the pythonpath and LD_LIBRARY_PATH [Ubuntu] if: startsWith(matrix.os, 'ubuntu') run: | echo "PYTHONPATH=${GITHUB_WORKSPACE}/install/deps/lib/python3/dist-packages" >> $GITHUB_ENV + echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${GITHUB_WORKSPACE}/install/deps/lib" >> $GITHUB_ENV # =================== # CMAKE-BASED PROJECT