mirror of
https://github.com/Z3Prover/z3
synced 2026-03-04 20:50:23 +00:00
18 lines
491 B
Batchfile
18 lines
491 B
Batchfile
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
|
|
python scripts\mk_win_dist.py --x64-only --dotnet-key=$(Agent.TempDirectory)\z3.snk
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
|
|
|
|
python scripts\mk_win_dist.py --x86-only --dotnet-key=$(Agent.TempDirectory)\z3.snk
|
|
|
|
xcopy dist\*.zip bin\nightly\* /y
|
|
|
|
cd bin\nightly
|
|
|
|
git add *.zip
|
|
|
|
git commit -s -a -m "nightly Windows"
|
|
|
|
git push
|
|
|