mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
macos
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
dc452b92e1
commit
f0f37411a2
35
scripts/nightly-macos.yaml
Normal file
35
scripts/nightly-macos.yaml
Normal file
|
@ -0,0 +1,35 @@
|
|||
pool:
|
||||
vmImage: "macOS-10.14"
|
||||
|
||||
steps:
|
||||
|
||||
- task: DotNetCoreInstaller@0
|
||||
displayName: 'Use .NET Core sdk 2.1'
|
||||
inputs:
|
||||
version: 2.1.300
|
||||
|
||||
- task: DownloadSecureFile@1
|
||||
inputs:
|
||||
secureFile: 'z3.snk'
|
||||
|
||||
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Agent.TempDirectory)/z3.snk
|
||||
|
||||
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
|
||||
|
||||
- task: GitHubRelease@0
|
||||
inputs:
|
||||
gitHubConnection: Z3GitHub
|
||||
repositoryName: 'Z3Prover/z3'
|
||||
action: 'create'
|
||||
target: '$(Build.SourceVersion)'
|
||||
tagSource: 'manual'
|
||||
tag: 'NightlyMacOs'
|
||||
title: 'Nightly MacOs'
|
||||
releaseNotesSource: 'input'
|
||||
releaseNotes: 'nightly build'
|
||||
isDraft: false
|
||||
isPreRelease: true
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue