3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00
z3/scripts/nightly-windows.yaml
2019-06-06 17:31:18 +02:00

36 lines
656 B
YAML

pool:
vmImage: "vs2017-win2016"
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core sdk 2.1'
inputs:
version: 2.1.300
- task: DownloadSecureFile@1
inputs:
secureFile: 'z3.snk'
- script: scripts\mk_win_dist.cmd
- script: xcopy dist\*.zip $(Build.ArtifactStagingDirectory)\* /y
- task: GitHubRelease@0
inputs:
gitHubConnection: Z3GitHub
repositoryName: 'Z3Prover/z3'
action: 'edit'
target: '$(Build.SourceVersion)'
tagSource: 'manual'
tag: 'NightlyWindows'
title: 'Nightly Windows'
releaseNotesSource: 'input'
releaseNotes: 'nightly build'
isDraft: true
isPreRelease: true