From 42a487e7814ae2a7ab753b85e034c8039503311f Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Tue, 2 Aug 2022 14:18:38 +0200 Subject: [PATCH] Debugging workflow --- .github/workflows/build-wheels.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index 0ae1d0f..305070d 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -12,6 +12,11 @@ jobs: runs-on: ubuntu-latest container: quay.io/pypa/manylinux2014_x86_64 steps: + - name: Status + run: | + git status + ls -lR + - uses: actions/checkout@v2 - name: Print System Information @@ -69,8 +74,9 @@ jobs: - name: Mini test run: | 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 + - name: version run: |