Skip to content

Commit

Permalink
Forgot to actually install Python
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Feb 29, 2024
1 parent f8a43d9 commit 44a0514
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)'

0 comments on commit 44a0514

Please sign in to comment.