mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
add ubuntu nightly
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d846511fce
commit
5687cda101
35
scripts/nightly-ubuntu.yaml
Normal file
35
scripts/nightly-ubuntu.yaml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
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: 'create'
|
||||||
|
target: '$(Build.SourceVersion)'
|
||||||
|
tagSource: 'manual'
|
||||||
|
tag: '$(Build.SourceVersion)'
|
||||||
|
title: 'Nightly Windows'
|
||||||
|
releaseNotesSource: 'input'
|
||||||
|
releaseNotes: 'nightly build'
|
||||||
|
isDraft: true
|
||||||
|
isPreRelease: true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue