From 082a62998088ab626dc741e54cb55f519eaf1e53 Mon Sep 17 00:00:00 2001 From: Tristan van Berkom Date: Thu, 17 Aug 2023 22:57:15 +0900 Subject: [PATCH] .github: Fix wheel testing --- .github/compose/ci.docker-compose.yml | 10 +++++----- .github/wheel-helpers/test-wheel-manylinux.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 3842e7e23..e1e6315d9 100644 --- a/.github/compose/ci.docker-compose.yml +++ b/.github/compose/ci.docker-compose.yml @@ -93,24 +93,24 @@ services: wheels-manylinux_2_28-cp37: <<: *tests-template image: quay.io/pypa/manylinux_2_28_x86_64 - command: .github/wheel-helpers/test-wheel-manylinux.sh cp37-cp37m-manylinux_2_28_x86_64 /opt/python/cp37-cp37m/bin/python3 + command: .github/wheel-helpers/test-wheel-manylinux.sh cp37 /opt/python/cp37-cp37m/bin/python3 wheels-manylinux_2_28-cp38: <<: *tests-template image: quay.io/pypa/manylinux_2_28_x86_64 - command: .github/wheel-helpers/test-wheel-manylinux.sh cp38-cp38-manylinux_2_28_x86_64 /opt/python/cp38-cp38/bin/python3 + command: .github/wheel-helpers/test-wheel-manylinux.sh cp38 /opt/python/cp38-cp38/bin/python3 wheels-manylinux_2_28-cp39: <<: *tests-template image: quay.io/pypa/manylinux_2_28_x86_64 - command: .github/wheel-helpers/test-wheel-manylinux.sh cp39-cp39-manylinux_2_28_x86_64 /opt/python/cp39-cp39/bin/python3 + command: .github/wheel-helpers/test-wheel-manylinux.sh cp39 /opt/python/cp39-cp39/bin/python3 wheels-manylinux_2_28-cp310: <<: *tests-template image: quay.io/pypa/manylinux_2_28_x86_64 - command: .github/wheel-helpers/test-wheel-manylinux.sh cp310-cp310-manylinux_2_28_x86_64 /opt/python/cp310-cp310/bin/python3 + command: .github/wheel-helpers/test-wheel-manylinux.sh cp310 /opt/python/cp310-cp310/bin/python3 wheels-manylinux_2_28-cp311: <<: *tests-template image: quay.io/pypa/manylinux_2_28_x86_64 - command: .github/wheel-helpers/test-wheel-manylinux.sh cp311-cp311-manylinux_2_28_x86_64 /opt/python/cp311-cp311/bin/python3 + command: .github/wheel-helpers/test-wheel-manylinux.sh cp311 /opt/python/cp311-cp311/bin/python3 diff --git a/.github/wheel-helpers/test-wheel-manylinux.sh b/.github/wheel-helpers/test-wheel-manylinux.sh index a780ab412..9463c21db 100755 --- a/.github/wheel-helpers/test-wheel-manylinux.sh +++ b/.github/wheel-helpers/test-wheel-manylinux.sh @@ -14,7 +14,7 @@ PYTHON=$2 dnf install -y bubblewrap "$PYTHON" -m venv /tmp/venv -/tmp/venv/bin/pip3 install ./wheelhouse/BuildStream-*-$COMPATIBILITY_TAGS.whl buildstream-plugins +/tmp/venv/bin/pip3 install ./wheelhouse/BuildStream-*-$COMPATIBILITY_TAGS-*.whl buildstream-plugins cd doc/examples/autotools /tmp/venv/bin/bst build hello.bst