From 33bbd694ff83315db8795406f85138ca20d8b0a4 Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Tue, 2 Aug 2022 18:06:50 +0200 Subject: [PATCH] Remove mini test step --- .github/workflows/build-wheels.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index 5e0c756..21a6831 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -66,21 +66,11 @@ jobs: auditwheel repair dist/*.whl python3 -m pip install --force-reinstall wheelhouse/*.whl - - name: Mini test - run: | - cd /tmp - python3 -c 'import libarchive; print(libarchive.version())' \ - | tee strace.out - find / -name 'libarchive*.so' | xargs ls -l - find / -name 'libarchive*.so' | xargs strings | grep 'libarchive' - - - name: version run: | export LD_LIBRARY_PATH=/usr/local/lib64/:/usr/local/lib:$LD_LIBRARY_PATH export LIBARCHIVE_PREFIX=/usr/local - - echo "::set-output name=version::$(cd /; python3 -c 'import libarchive; print(libarchive._libarchive.ARCHIVE_VERSION_STRING.split()[1])')" + echo "::set-output name=version::$(cd /tmp; python3 -c 'import libarchive; print(libarchive.version()')" id: version - uses: actions/upload-artifact@v3