We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e24bd55 commit 0844781Copy full SHA for 0844781
2 files changed
.github/actions/tests/action.yml
@@ -30,4 +30,5 @@ runs:
30
shell: bash -euxo pipefail {0}
31
run: |
32
uv run pytest tests/
33
+ ./scripts/set_ld_path.sh
34
cargo test --workspace --locked
scripts/set_ld_path.sh
@@ -0,0 +1,4 @@
1
+#!/bin/bash
2
+
3
+LIB_DIR=$(python3 -c "import sysconfig; print(sysconfig.get_config_var('LIBDIR'))")
4
+export LD_LIBRARY_PATH="$LIB_DIR:$LD_LIBRARY_PATH"
0 commit comments