From 44a0514ff9a022ed61a7f6fb31b0fd480daa4a96 Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Thu, 29 Feb 2024 13:58:09 +0100 Subject: [PATCH] Forgot to actually install Python --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2cb3039e3f..549add83a3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -286,9 +286,10 @@ stages: displayName: "Make manylinux wheels available" - script: | set -eux + sudo apt-add-repository -y ppa:deadsnakes/ppa + sudo apt-get update + sudo apt-get install -y python$(python.version) python$(python.version)-dev python$(python.version)-venv 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)'