From 92578905b120267b0f1ac73a08bcf25c3282b8e1 Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Thu, 29 Feb 2024 11:49:03 +0100 Subject: [PATCH] Fix for azure testing manylinux --- azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 523532633b..a4b38e1a28 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -281,10 +281,14 @@ stages: Python311: python.version: '3.11' steps: + - download: current + patterns: '*.whl' + displayName: "Make manylinux wheels available" - script: | set -eux dotless_version="$(echo "$(python.version)" | tr -d '.')" + find $(Pipeline.Workspace) -name "*cp${dotless_version}-manylinux*.whl" + find . -name "*cp${dotless_version}-manylinux*.whl" find $(Pipeline.Workspace) -name "*cp${dotless_version}-manylinux*.whl" -exec bash packaging/test_wheel.bash python$(python.version) {} \; condition: succeeded() displayName: 'Test manylinux Wheel with Python $(python.version)' - - template: ci/upload-wheels.yml