Browse Source

Remove mini test step

test_fixup
Vadim Lebedev 2 years ago
parent
commit
33bbd694ff
1 changed files with 1 additions and 11 deletions
  1. +1
    -11
      .github/workflows/build-wheels.yaml

+ 1
- 11
.github/workflows/build-wheels.yaml View File

@@ -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


Loading…
Cancel
Save