From 8194803759ddb9ab4d1d8f58ddd5ac86b53160a0 Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Wed, 3 Aug 2022 17:31:15 +0200 Subject: [PATCH] Fix python copmile step --- .github/workflows/build-wheels.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index b26ab36..1b2e80c 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -49,12 +49,15 @@ jobs: cd ../.. - - name: Compile pyhton modules + - name: Prepare build environment run: | rm -rf build wheelhouse touch libarchive/_libarchive.i echo LD_LIBRARY_PATH=/usr/local/lib64/:/usr/local/lib:$LD_LIBRARY_PATH >>$GITHUB_ENV echo LIBARCHIVE_PREFIX=/usr/local >>$GITHUB_ENV + + - name: Compile pyhton modules + run: | python3 setup.py install