Browse Source

Debugging workflow

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

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

@@ -12,6 +12,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64 container: quay.io/pypa/manylinux2014_x86_64
steps: steps:
- name: Status
run: |
git status
ls -lR
- uses: actions/checkout@v2 - uses: actions/checkout@v2


- name: Print System Information - name: Print System Information
@@ -69,8 +74,9 @@ jobs:
- name: Mini test - name: Mini test
run: | run: |
cd /tmp cd /tmp
strace -e open,openat python3 -c 'import libarchive; print(libarchive._libarchive.ARCHIVE_VERSION_STRING.split()[1])' \
python3 -c 'import libarchive; print(libarchive._libarchive.ARCHIVE_VERSION_STRING.split()[1])' \
| tee strace.out | tee strace.out
- name: version - name: version
run: | run: |


Loading…
Cancel
Save