Skip to content

Commit

Permalink
Fix: Add correct library path for rust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raynelfss committed Dec 2, 2024
1 parent 4f88d35 commit 8ea3f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
# On Linux we link against `libpython` dynamically, but it isn't written into the rpath
# of the test executable (I'm not 100% sure why ---Jake). It's easiest just to forcibly
# include the correct place in the `dlopen` search path.
LD_LIBRARY_PATH: "${{ steps.python-outputs.outputs.python-path }}/lib:$LD_LIBRARY_PATH"
LD_LIBRARY_PATH: "${{ steps.python-outputs.outputs.python-path }}/lib:${{env.LD_LIBRARY_PATH}}"
- name: Prepare venv
run: |
set -e
Expand Down

0 comments on commit 8ea3f35

Please sign in to comment.