Skip to content

Commit 2e62602

Browse files
committed
Try fix library path for builded python when run build extension test
1 parent 0555a6c commit 2e62602

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/mingw.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ jobs:
8989
run: |
9090
SMOKETESTS="$(pwd)/mingw_smoketests.py"
9191
cd _build
92-
./python.exe "$SMOKETESTS"
93-
MSYSTEM= ./python.exe "$SMOKETESTS"
92+
LD_LIBRARY_PATH=$(pwd):$LD_LIBRARY_PATH ./python.exe "$SMOKETESTS"
93+
LD_LIBRARY_PATH=$(pwd):$LD_LIBRARY_PATH MSYSTEM= ./python.exe "$SMOKETESTS"
9494
9595
- name: Run tests
9696
shell: msys2 {0}

0 commit comments

Comments
 (0)