Skip to content

Commit

Permalink
nlwpy: Simplify upload paths
Browse files Browse the repository at this point in the history
  • Loading branch information
fdabrandao committed Feb 26, 2024
1 parent 4a1b3a4 commit 8a4ccc7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ stages:
python setup.py sdist -d upload
displayName: Build sdist
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'nl-writer2/nlwpy/upload'}
inputs: {pathtoPublish: 'nl-writer2/upload'}
- job: manylinux
pool: {vmImage: 'Ubuntu-20.04'}
steps:
Expand All @@ -22,10 +22,10 @@ stages:
set -ex
cd nl-writer2/
python -m pip install --upgrade cibuildwheel==2.16.2
cibuildwheel --platform linux --output-dir nlwpy/wheelhouse .
cibuildwheel --platform linux --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'nl-writer2/nlwpy/wheelhouse'}
inputs: {pathtoPublish: 'nl-writer2/wheelhouse'}
- job: macos
pool: {vmImage: 'macos-latest'}
variables:
Expand All @@ -36,10 +36,10 @@ stages:
set -ex
cd nl-writer2/
python -m pip install --upgrade cibuildwheel==2.16.2
cibuildwheel --platform macos --output-dir nlwpy/wheelhouse .
cibuildwheel --platform macos --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'nl-writer2/nlwpy/wheelhouse'}
inputs: {pathtoPublish: 'nl-writer2/wheelhouse'}
- job: windows
pool: {vmImage: 'windows-2022'}
steps:
Expand All @@ -48,10 +48,10 @@ stages:
set -ex
cd nl-writer2/
python -m pip install --upgrade cibuildwheel==2.16.2
cibuildwheel --platform windows --output-dir nlwpy/wheelhouse .
cibuildwheel --platform windows --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'nl-writer2/nlwpy/wheelhouse'}
inputs: {pathtoPublish: 'nl-writer2/wheelhouse'}

# - stage: qemu
# displayName: 'Build with QEMU'
Expand Down Expand Up @@ -86,10 +86,10 @@ stages:
set -ex
cd nl-writer2/
python -m pip install --upgrade cibuildwheel==2.16.2
cibuildwheel --platform linux --output-dir nlwpy/wheelhouse .
cibuildwheel --platform linux --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'nl-writer2/nlwpy/wheelhouse'}
inputs: {pathtoPublish: 'nl-writer2/wheelhouse'}

- stage: publish
jobs:
Expand Down

0 comments on commit 8a4ccc7

Please sign in to comment.