3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-21 21:33:39 +00:00

Update nightly.yaml for Azure Pipelines

This commit is contained in:
Nikolaj Bjorner 2020-12-19 16:59:07 -08:00
parent e8b506a172
commit 5ce3c18fd0

View file

@ -122,40 +122,40 @@ jobs:
cd scripts cd scripts
python mk_nuget_task.py ../tmp $(z3Version) $(Build.SourceVersion) python mk_nuget_task.py ../tmp $(z3Version) $(Build.SourceVersion)
cd .. cd ..
- task: PythonScript@0 - task: PythonScript@0
displayName: 'Python: assemble files' displayName: 'Python: assemble files'
inputs: inputs:
scriptSource: 'filepath' scriptSource: 'filepath'
scriptPath: scripts\mk_nuget_task.py scriptPath: scripts\mk_nuget_task.py
workingDirectory: $(Agent.TempDirectory)\package workingDirectory: $(Agent.TempDirectory)\package
arguments: arguments:
$(Agent.TempDirectory)\package $(Agent.TempDirectory)\package
$(ReleaseVersion) $(ReleaseVersion)
$(Build.Repository.Uri) $(Build.Repository.Uri)
$(Build.SourceBranchName) $(Build.SourceBranchName)
$(Build.SourceVersion) $(Build.SourceVersion)
$(Build.SourcesDirectory) $(Build.SourcesDirectory)
- task: NuGetToolInstaller@0 - task: NuGetToolInstaller@0
inputs: inputs:
versionSpec: 5.x versionSpec: 5.x
checkLatest: false checkLatest: false
- task: NugetCommand@2 - task: NugetCommand@2
displayName: 'NuGet Pack' displayName: 'NuGet Pack'
inputs: inputs:
command: pack command: pack
packagesToPack: $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.nuspec packagesToPack: $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.nuspec
basePath: $(Agent.TempDirectory)\package\out basePath: $(Agent.TempDirectory)\package\out
packDestination: $(Build.ArtifactStagingDirectory) packDestination: $(Build.ArtifactStagingDirectory)
verbosityPack: detailed verbosityPack: detailed
- task: NugetCommand@2 - task: NugetCommand@2
displayName: 'NuGet Pack Symbols' displayName: 'NuGet Pack Symbols'
inputs: inputs:
command: pack command: pack
packagesToPack: $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.nuspec packagesToPack: $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.nuspec
basePath: $(Agent.TempDirectory)\package\out basePath: $(Agent.TempDirectory)\package\out
packDestination: $(Build.ArtifactStagingDirectory) packDestination: $(Build.ArtifactStagingDirectory)
verbosityPack: detailed verbosityPack: detailed
includeSymbols: true includeSymbols: true
# Not available as a task? # Not available as a task?
# - script: | # - script: |