Skip to content

Commit

Permalink
Fix for azure testing manylinux
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Feb 29, 2024
1 parent c142b94 commit 9257890
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9257890

Please sign in to comment.