Skip to content

Commit

Permalink
Fix azure pipeline searching for wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Feb 28, 2024
1 parent 9853a29 commit 15d94b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 15d94b5

Please sign in to comment.