From 15d94b560db658c4cc656bad3d0dd256a47d39f5 Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Wed, 28 Feb 2024 09:23:40 +0100 Subject: [PATCH] Fix azure pipeline searching for wheels --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55ef7fd21..aa0add847 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -283,7 +283,7 @@ stages: steps: - script: | dotless_version="$(echo "$(python.version)" | tr -d '.')" - find . -name "$cp$(python_dotless_version)-manylinux*.whl" -exec bash packaging/test_wheel.bash python$(python.version) wheelhouse/{} \; + find $(Pipeline.Workspace) -name "$cp$(python_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