Skip to content

Commit

Permalink
Add Publish step for generating artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ljvmiranda921 committed Apr 7, 2019
1 parent ef8666c commit 69cd37a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,17 @@ jobs:
testResultsFiles: '**/test-results.xml'
testRunTitle: 'Python $(python.version)'
condition: succeededOrFailed()

- job: 'Publish'
dependsOn: 'Test'
pool:
vmImage: 'Ubuntu-16.04'

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
architecture: 'x64'

- script: make dist
displayName: 'Build dist'

0 comments on commit 69cd37a

Please sign in to comment.