mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 04:28:17 +00:00
34 lines
620 B
YAML
34 lines
620 B
YAML
pool:
|
|
vmImage: "vs2017-win2016"
|
|
|
|
|
|
steps:
|
|
|
|
- script: git clone https://github.com/z3prover/bin bin
|
|
|
|
- task: DotNetCoreInstaller@0
|
|
displayName: 'Use .NET Core sdk 2.1'
|
|
inputs:
|
|
version: 2.1.300
|
|
|
|
- task: DownloadSecureFile@1
|
|
inputs:
|
|
secureFile: 'z3.snk'
|
|
|
|
- script: dir
|
|
|
|
- task: BatchScript@1
|
|
displayName: 'run windist'
|
|
inputs:
|
|
filename: 'scripts/mk_win_dist.cmd'
|
|
|
|
- script: dir
|
|
- script: xcopy dist\z3-4.8.6-x86-win\*.zip bin\nightly\* /y
|
|
- script: xcopy dist\z3-4.8.6-x64-win\*.zip bin\nightly\* /y
|
|
- script: cd bin\nightly
|
|
- script: git add *.zip
|
|
- script: git commit -s -a
|
|
- script: git push
|
|
|
|
|