diff --git a/.github/workflows/linux-x86-64.yml b/.github/workflows/linux-x86-64.yml index 2808ca1..cf373a3 100644 --- a/.github/workflows/linux-x86-64.yml +++ b/.github/workflows/linux-x86-64.yml @@ -23,7 +23,7 @@ jobs: - name: Build Python 3.7 wheel shell: bash env: - PYTHON_VERSION: 3.7 + PYTHON_VERSION: 37 run: | docker run --rm \ -e CCACHE_COMPRESS=1 \ @@ -37,7 +37,7 @@ jobs: - name: Build Python 3.8 wheel shell: bash env: - PYTHON_VERSION: 3.8 + PYTHON_VERSION: 38 run: | docker run --rm \ -e CCACHE_COMPRESS=1 \ @@ -51,7 +51,7 @@ jobs: - name: Build Python 3.9 wheel shell: bash env: - PYTHON_VERSION: 3.9 + PYTHON_VERSION: 39 run: | docker run --rm \ -e CCACHE_COMPRESS=1 \ diff --git a/scripts/docker/travis-linux.sh b/scripts/docker/travis-linux.sh index dd35926..cc60bff 100644 --- a/scripts/docker/travis-linux.sh +++ b/scripts/docker/travis-linux.sh @@ -8,6 +8,6 @@ export LDFLAGS='-Wl,--gc-sections -Wl,--exclude-libs,ALL' $PYTHON_BINARY setup.py --ninja --lief-test build \ bdist_wheel --skip-build --dist-dir wheel_stage -auditwheel repair -w dist --plat manylinux1_x86_64 wheel_stage/*.whl +find wheel_stage -iname "*-cp${PYTHON_VERSION}-*" -exec auditwheel repair -w dist --plat manylinux1_x86_64 {} \; chown -R 1000:1000 build dist wheel_stage