3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 20:46:01 +00:00

add nuget stage to nightly

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-10-21 08:22:18 -07:00
parent 5c78f855ad
commit 0756581a99
3 changed files with 204 additions and 1 deletions

View file

@ -68,6 +68,28 @@ jobs:
artifactName: 'Windows'
targetPath: $(Build.ArtifactStagingDirectory)
- job: NuGet
displayName: "Create Nuget Package"
dependsOn:
- Mac
- Ubuntu
- Windows
steps:
- task: DownloadPipelineArtifact@0
inputs:
artifactName: 'Windows'
targetPath: tmp
- task: DownloadPipelineArtifact@0
inputs:
artifactName: 'Mac'
targetPath: tmp
- task: DownloadPipelineArtifact@0
inputs:
artifactName: 'Ubuntu'
targetPath: tmp
- script: python scripts/mk_nuget_task.py tmp
- job: Python
displayName: "Python packaging"
dependsOn: