mirror of
https://github.com/Z3Prover/z3
synced 2025-07-25 21:57:00 +00:00
add stages
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6c42e8068c
commit
b108f5163d
1 changed files with 247 additions and 243 deletions
|
@ -1,265 +1,269 @@
|
||||||
variables:
|
variables:
|
||||||
ReleaseVersion: '4.8.10'
|
ReleaseVersion: '4.8.10'
|
||||||
|
|
||||||
jobs:
|
stages:
|
||||||
|
- stage: Build
|
||||||
|
jobs:
|
||||||
|
|
||||||
- job: Mac
|
- job: Mac
|
||||||
displayName: "Mac Build"
|
displayName: "Mac Build"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "macOS-latest"
|
vmImage: "macOS-latest"
|
||||||
steps:
|
steps:
|
||||||
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
||||||
- script: git clone https://github.com/z3prover/z3test z3test
|
- script: git clone https://github.com/z3prover/z3test z3test
|
||||||
- script: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
- script: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
|
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
|
||||||
- task: PublishPipelineArtifact@0
|
- task: PublishPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'Mac'
|
artifactName: 'Mac'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
- job: Ubuntu
|
- job: Ubuntu
|
||||||
displayName: "Ubuntu build"
|
displayName: "Ubuntu build"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "ubuntu-latest"
|
vmImage: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
||||||
- script: git clone https://github.com/z3prover/z3test z3test
|
- script: git clone https://github.com/z3prover/z3test z3test
|
||||||
- script: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
- script: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
|
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
|
||||||
- task: PublishPipelineArtifact@0
|
- task: PublishPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'Ubuntu'
|
artifactName: 'Ubuntu'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
- job: Manylinux
|
- job: Manylinux
|
||||||
displayName: "Manylinux build"
|
displayName: "Manylinux build"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "ubuntu-latest"
|
vmImage: "ubuntu-latest"
|
||||||
container: "quay.io/pypa/manylinux2010_x86_64:latest"
|
container: "quay.io/pypa/manylinux2010_x86_64:latest"
|
||||||
variables:
|
variables:
|
||||||
python: "/opt/python/cp35-cp35m/bin/python"
|
python: "/opt/python/cp35-cp35m/bin/python"
|
||||||
steps:
|
steps:
|
||||||
- script: $(python) scripts/mk_unix_dist.py --nodotnet --nojava
|
- script: $(python) scripts/mk_unix_dist.py --nodotnet --nojava
|
||||||
- script: git clone https://github.com/z3prover/z3test z3test
|
- script: git clone https://github.com/z3prover/z3test z3test
|
||||||
- script: $(python) z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
- script: $(python) z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/
|
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/
|
||||||
- task: PublishPipelineArtifact@0
|
- task: PublishPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'Manylinux'
|
artifactName: 'Manylinux'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
- job: Windows32
|
- job: Windows32
|
||||||
displayName: "Windows 32-bit build"
|
displayName: "Windows 32-bit build"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "vs2017-win2016"
|
vmImage: "vs2017-win2016"
|
||||||
steps:
|
steps:
|
||||||
- task: CmdLine@2
|
- task: CmdLine@2
|
||||||
inputs:
|
inputs:
|
||||||
script:
|
script:
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars32.bat" &&
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars32.bat" &&
|
||||||
python scripts\mk_win_dist.py
|
python scripts\mk_win_dist.py
|
||||||
--x86-only
|
--x86-only
|
||||||
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
||||||
--zip
|
--zip
|
||||||
- task: CopyFiles@2
|
- task: CopyFiles@2
|
||||||
inputs:
|
inputs:
|
||||||
sourceFolder: dist
|
sourceFolder: dist
|
||||||
contents: '*.zip'
|
contents: '*.zip'
|
||||||
targetFolder: $(Build.ArtifactStagingDirectory)
|
targetFolder: $(Build.ArtifactStagingDirectory)
|
||||||
- task: PublishPipelineArtifact@1
|
- task: PublishPipelineArtifact@1
|
||||||
inputs:
|
inputs:
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
artifactName: 'Windows32'
|
artifactName: 'Windows32'
|
||||||
|
|
||||||
- job: Windows64
|
- job: Windows64
|
||||||
displayName: "Windows 64-bit build"
|
displayName: "Windows 64-bit build"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "vs2017-win2016"
|
vmImage: "vs2017-win2016"
|
||||||
steps:
|
steps:
|
||||||
- task: CmdLine@2
|
- task: CmdLine@2
|
||||||
inputs:
|
inputs:
|
||||||
script:
|
script:
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat" &&
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat" &&
|
||||||
python scripts\mk_win_dist.py
|
python scripts\mk_win_dist.py
|
||||||
--x64-only
|
--x64-only
|
||||||
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
||||||
--zip
|
--zip
|
||||||
- task: CopyFiles@2
|
- task: CopyFiles@2
|
||||||
inputs:
|
inputs:
|
||||||
sourceFolder: dist
|
sourceFolder: dist
|
||||||
contents: '*.zip'
|
contents: '*.zip'
|
||||||
targetFolder: $(Build.ArtifactStagingDirectory)
|
targetFolder: $(Build.ArtifactStagingDirectory)
|
||||||
- task: PublishPipelineArtifact@1
|
- task: PublishPipelineArtifact@1
|
||||||
inputs:
|
inputs:
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
artifactName: 'Windows64'
|
artifactName: 'Windows64'
|
||||||
|
|
||||||
|
- stage: Package
|
||||||
|
jobs:
|
||||||
|
- job: NuGet
|
||||||
|
displayName: "NuGet packaging"
|
||||||
|
dependsOn:
|
||||||
|
- Mac
|
||||||
|
- Ubuntu
|
||||||
|
- Windows32
|
||||||
|
- Windows64
|
||||||
|
pool:
|
||||||
|
vmImage: "windows-latest"
|
||||||
|
steps:
|
||||||
|
- powershell: write-host $(System.DefinitionId)
|
||||||
|
displayName: 'System.DefinitionId'
|
||||||
|
- powershell: write-host $(Build.BuildId)
|
||||||
|
displayName: 'Build.BuildId'
|
||||||
|
- powershell: write-host $(System.TeamProjectId)
|
||||||
|
displayName: 'System.TeamProjectId'
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: 'Download Win64 Build'
|
||||||
|
inputs:
|
||||||
|
artifact: 'Windows64'
|
||||||
|
path: $(Agent.TempDirectory)\package
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: 'Download Ubuntu Build'
|
||||||
|
inputs:
|
||||||
|
artifact: 'Ubuntu'
|
||||||
|
path: $(Agent.TempDirectory)\package
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: 'Download macOS Build'
|
||||||
|
inputs:
|
||||||
|
artifact: 'Mac'
|
||||||
|
path: $(Agent.TempDirectory)\package
|
||||||
|
- task: PythonScript@0
|
||||||
|
displayName: 'Python: assemble files'
|
||||||
|
inputs:
|
||||||
|
scriptSource: 'filepath'
|
||||||
|
scriptPath: scripts\mk_nuget_task.py
|
||||||
|
workingDirectory: $(Agent.TempDirectory)\package
|
||||||
|
arguments:
|
||||||
|
$(Agent.TempDirectory)\package
|
||||||
|
$(ReleaseVersion)
|
||||||
|
$(Build.Repository.Uri)
|
||||||
|
$(Build.SourceBranchName)
|
||||||
|
$(Build.SourceVersion)
|
||||||
|
$(Build.SourcesDirectory)
|
||||||
|
- task: NuGetToolInstaller@0
|
||||||
|
inputs:
|
||||||
|
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: NugetCommand@2
|
||||||
|
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
|
||||||
|
includeSymbols: true
|
||||||
|
|
||||||
- job: NuGet
|
- job: Python
|
||||||
displayName: "NuGet packaging"
|
displayName: "Python packaging"
|
||||||
dependsOn:
|
dependsOn:
|
||||||
- Mac
|
- Manylinux
|
||||||
- Ubuntu
|
- Windows32
|
||||||
- Windows32
|
- Windows64
|
||||||
- Windows64
|
- Mac
|
||||||
pool:
|
pool:
|
||||||
vmImage: "windows-latest"
|
vmImage: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- powershell: write-host $(System.DefinitionId)
|
- task: DownloadPipelineArtifact@0
|
||||||
displayName: 'System.DefinitionId'
|
inputs:
|
||||||
- powershell: write-host $(Build.BuildId)
|
artifactName: 'Windows32'
|
||||||
displayName: 'Build.BuildId'
|
targetPath: $(Agent.TempDirectory)
|
||||||
- powershell: write-host $(System.TeamProjectId)
|
- task: DownloadPipelineArtifact@0
|
||||||
displayName: 'System.TeamProjectId'
|
inputs:
|
||||||
- task: DownloadPipelineArtifact@2
|
artifactName: 'Windows64'
|
||||||
displayName: 'Download Win64 Build'
|
targetPath: $(Agent.TempDirectory)
|
||||||
inputs:
|
- task: DownloadPipelineArtifact@0
|
||||||
artifact: 'Windows64'
|
inputs:
|
||||||
path: $(Agent.TempDirectory)\package
|
artifactName: 'Manylinux'
|
||||||
- task: DownloadPipelineArtifact@2
|
targetPath: $(Agent.TempDirectory)
|
||||||
displayName: 'Download Ubuntu Build'
|
- task: DownloadPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifact: 'Ubuntu'
|
artifactName: 'Mac'
|
||||||
path: $(Agent.TempDirectory)\package
|
targetPath: $(Agent.TempDirectory)
|
||||||
- task: DownloadPipelineArtifact@2
|
- script: cd $(Agent.TempDirectory); mkdir osx-bin; cd osx-bin; unzip ../*osx*.zip
|
||||||
displayName: 'Download macOS Build'
|
- script: cd $(Agent.TempDirectory); mkdir linux-bin; cd linux-bin; unzip ../*centos*.zip
|
||||||
inputs:
|
- script: cd $(Agent.TempDirectory); mkdir win32-bin; cd win32-bin; unzip ../*x86-win*.zip
|
||||||
artifact: 'Mac'
|
- script: cd $(Agent.TempDirectory); mkdir win64-bin; cd win64-bin; unzip ../*x64-win*.zip
|
||||||
path: $(Agent.TempDirectory)\package
|
- script: python3 -m pip install --user -U setuptools wheel
|
||||||
- task: PythonScript@0
|
- script: cd src/api/python; python3 setup.py sdist
|
||||||
displayName: 'Python: assemble files'
|
# take a look at this PREMIUM HACK I came up with to get around the fact that the azure variable syntax overloads the bash syntax for subshells
|
||||||
inputs:
|
- script: cd src/api/python; echo $(Agent.TempDirectory)/linux-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||||
scriptSource: 'filepath'
|
- script: cd src/api/python; echo $(Agent.TempDirectory)/win32-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||||
scriptPath: scripts\mk_nuget_task.py
|
- script: cd src/api/python; echo $(Agent.TempDirectory)/win64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||||
workingDirectory: $(Agent.TempDirectory)\package
|
- script: cd src/api/python; echo $(Agent.TempDirectory)/osx-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||||
arguments:
|
- task: PublishPipelineArtifact@0
|
||||||
$(Agent.TempDirectory)\package
|
inputs:
|
||||||
$(ReleaseVersion)
|
artifactName: 'Python packages'
|
||||||
$(Build.Repository.Uri)
|
targetPath: src/api/python/dist
|
||||||
$(Build.SourceBranchName)
|
|
||||||
$(Build.SourceVersion)
|
|
||||||
$(Build.SourcesDirectory)
|
|
||||||
- task: NuGetToolInstaller@0
|
|
||||||
inputs:
|
|
||||||
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: NugetCommand@2
|
|
||||||
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
|
|
||||||
includeSymbols: true
|
|
||||||
|
|
||||||
- job: Python
|
- stage: Deployment
|
||||||
displayName: "Python packaging"
|
- job: Deploy
|
||||||
dependsOn:
|
displayName: "Deploy into GitHub"
|
||||||
- Manylinux
|
dependsOn:
|
||||||
- Windows32
|
- Mac
|
||||||
- Windows64
|
- Ubuntu
|
||||||
- Mac
|
- Windows32
|
||||||
pool:
|
- Windows64
|
||||||
vmImage: "ubuntu-latest"
|
- Python
|
||||||
steps:
|
- NuGet
|
||||||
- task: DownloadPipelineArtifact@0
|
steps:
|
||||||
inputs:
|
- task: DownloadPipelineArtifact@0
|
||||||
artifactName: 'Windows32'
|
inputs:
|
||||||
targetPath: $(Agent.TempDirectory)
|
artifactName: 'Windows32'
|
||||||
- task: DownloadPipelineArtifact@0
|
targetPath: tmp
|
||||||
inputs:
|
- task: DownloadPipelineArtifact@0
|
||||||
artifactName: 'Windows64'
|
inputs:
|
||||||
targetPath: $(Agent.TempDirectory)
|
artifactName: 'Windows64'
|
||||||
- task: DownloadPipelineArtifact@0
|
targetPath: tmp
|
||||||
inputs:
|
- task: DownloadPipelineArtifact@0
|
||||||
artifactName: 'Manylinux'
|
inputs:
|
||||||
targetPath: $(Agent.TempDirectory)
|
artifactName: 'Mac'
|
||||||
- task: DownloadPipelineArtifact@0
|
targetPath: tmp
|
||||||
inputs:
|
- task: DownloadPipelineArtifact@0
|
||||||
artifactName: 'Mac'
|
inputs:
|
||||||
targetPath: $(Agent.TempDirectory)
|
artifactName: 'Ubuntu'
|
||||||
- script: cd $(Agent.TempDirectory); mkdir osx-bin; cd osx-bin; unzip ../*osx*.zip
|
targetPath: tmp
|
||||||
- script: cd $(Agent.TempDirectory); mkdir linux-bin; cd linux-bin; unzip ../*centos*.zip
|
- task: DownloadPipelineArtifact@0
|
||||||
- script: cd $(Agent.TempDirectory); mkdir win32-bin; cd win32-bin; unzip ../*x86-win*.zip
|
inputs:
|
||||||
- script: cd $(Agent.TempDirectory); mkdir win64-bin; cd win64-bin; unzip ../*x64-win*.zip
|
artifactName: 'Python packages'
|
||||||
- script: python3 -m pip install --user -U setuptools wheel
|
targetPath: tmp
|
||||||
- script: cd src/api/python; python3 setup.py sdist
|
- task: DownloadPipelineArtifact@0
|
||||||
# take a look at this PREMIUM HACK I came up with to get around the fact that the azure variable syntax overloads the bash syntax for subshells
|
inputs:
|
||||||
- script: cd src/api/python; echo $(Agent.TempDirectory)/linux-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
artifactName: 'NuGet'
|
||||||
- script: cd src/api/python; echo $(Agent.TempDirectory)/win32-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
targetPath: tmp
|
||||||
- script: cd src/api/python; echo $(Agent.TempDirectory)/win64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
- task: GitHubRelease@0
|
||||||
- script: cd src/api/python; echo $(Agent.TempDirectory)/osx-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
inputs:
|
||||||
- task: PublishPipelineArtifact@0
|
gitHubConnection: Z3GitHub
|
||||||
inputs:
|
repositoryName: 'Z3Prover/z3'
|
||||||
artifactName: 'Python packages'
|
action: 'delete'
|
||||||
targetPath: src/api/python/dist
|
|
||||||
|
|
||||||
- job: Deploy
|
|
||||||
displayName: "Deploy into GitHub"
|
|
||||||
dependsOn:
|
|
||||||
- Mac
|
|
||||||
- Ubuntu
|
|
||||||
- Windows32
|
|
||||||
- Windows64
|
|
||||||
- Python
|
|
||||||
- NuGet
|
|
||||||
steps:
|
|
||||||
- task: DownloadPipelineArtifact@0
|
|
||||||
inputs:
|
|
||||||
artifactName: 'Windows32'
|
|
||||||
targetPath: tmp
|
|
||||||
- task: DownloadPipelineArtifact@0
|
|
||||||
inputs:
|
|
||||||
artifactName: 'Windows64'
|
|
||||||
targetPath: tmp
|
|
||||||
- task: DownloadPipelineArtifact@0
|
|
||||||
inputs:
|
|
||||||
artifactName: 'Mac'
|
|
||||||
targetPath: tmp
|
|
||||||
- task: DownloadPipelineArtifact@0
|
|
||||||
inputs:
|
|
||||||
artifactName: 'Ubuntu'
|
|
||||||
targetPath: tmp
|
|
||||||
- task: DownloadPipelineArtifact@0
|
|
||||||
inputs:
|
|
||||||
artifactName: 'Python packages'
|
|
||||||
targetPath: tmp
|
|
||||||
- task: DownloadPipelineArtifact@0
|
|
||||||
inputs:
|
|
||||||
artifactName: 'NuGet'
|
|
||||||
targetPath: tmp
|
|
||||||
- task: GitHubRelease@0
|
|
||||||
inputs:
|
|
||||||
gitHubConnection: Z3GitHub
|
|
||||||
repositoryName: 'Z3Prover/z3'
|
|
||||||
action: 'delete'
|
|
||||||
# target: '$(Build.SourceVersion)'
|
# target: '$(Build.SourceVersion)'
|
||||||
tagSource: 'manual'
|
tagSource: 'manual'
|
||||||
tag: 'Nightly'
|
tag: 'Nightly'
|
||||||
- task: GitHubRelease@0
|
- task: GitHubRelease@0
|
||||||
inputs:
|
inputs:
|
||||||
gitHubConnection: Z3GitHub
|
gitHubConnection: Z3GitHub
|
||||||
repositoryName: 'Z3Prover/z3'
|
repositoryName: 'Z3Prover/z3'
|
||||||
action: 'create'
|
action: 'create'
|
||||||
# target: '$(Build.SourceVersion)'
|
# target: '$(Build.SourceVersion)'
|
||||||
tagSource: 'manual'
|
tagSource: 'manual'
|
||||||
tag: 'Nightly'
|
tag: 'Nightly'
|
||||||
title: 'Nightly'
|
title: 'Nightly'
|
||||||
releaseNotesSource: 'input'
|
releaseNotesSource: 'input'
|
||||||
releaseNotes: 'nightly build'
|
releaseNotes: 'nightly build'
|
||||||
assets: 'tmp/*'
|
assets: 'tmp/*'
|
||||||
assetUploadMode: 'replace'
|
assetUploadMode: 'replace'
|
||||||
isDraft: false
|
isDraft: false
|
||||||
isPreRelease: true
|
isPreRelease: true
|
||||||
|
|
||||||
|
|
||||||
# TBD: run regression tests on generated binaries.
|
# TBD: run regression tests on generated binaries.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue