From 8692fcdf3b5b0ec0b098b1831003a56b06904409 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Tue, 22 Dec 2020 10:47:33 -0800 Subject: [PATCH] Update nightly.yaml for Azure Pipelines --- scripts/nightly.yaml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/scripts/nightly.yaml b/scripts/nightly.yaml index fad23715f..5539b2d75 100644 --- a/scripts/nightly.yaml +++ b/scripts/nightly.yaml @@ -137,19 +137,12 @@ stages: $(Build.SourceBranchName) $(Build.SourceVersion) $(Build.SourcesDirectory) - nosymbols - - task: NuGetToolInstaller@0 - inputs: - versionSpec: 5.x - checkLatest: false + symbols - task: NugetCommand@2 - displayName: 'NuGet Pack' + displayName: 'NuGet Pack Symbols' inputs: - command: pack - packagesToPack: $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.nuspec - basePath: $(Agent.TempDirectory)\package\out - packDestination: $(Build.ArtifactStagingDirectory) - verbosityPack: detailed + command: custom + arguments: 'pack $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.sym.nuspec -OutputDirectory $(Build.ArtifactStagingDirectory) -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath $(Agent.TempDirectory)\package\out' - task: PythonScript@0 displayName: 'Python: assemble files' inputs: @@ -163,12 +156,19 @@ stages: $(Build.SourceBranchName) $(Build.SourceVersion) $(Build.SourcesDirectory) - symbols - - task: NugetCommand@2 - displayName: 'NuGet Pack Symbols' + nosymbols + - task: NuGetToolInstaller@0 inputs: - command: custom - arguments: 'pack $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.sym.nuspec -OutputDirectory $(Build.ArtifactStagingDirectory) -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath $(Agent.TempDirectory)\package\out' + versionSpec: 5.x + checkLatest: false + - task: NugetCommand@2 + displayName: 'NuGet Pack' + inputs: + command: pack + packagesToPack: $(Agent.TempDirectory)\package\out\Microsoft.Z3.x64.nuspec + basePath: $(Agent.TempDirectory)\package\out + packDestination: $(Build.ArtifactStagingDirectory) + verbosityPack: detailed - task: PublishPipelineArtifact@1 inputs: targetPath: $(Build.ArtifactStagingDirectory)