mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
36 lines
717 B
Batchfile
36 lines
717 B
Batchfile
git config --global user.email "nbjorner@microsoft.com"
|
|
|
|
git config --global user.name "Nikolaj Bjorner"
|
|
|
|
echo "test" > bin\nightly\ping.txt
|
|
|
|
cd bin\nightly
|
|
|
|
git add ping.txt
|
|
|
|
git commit -s -a -m "test"
|
|
|
|
git push
|
|
|
|
goto :EOF
|
|
|
|
|
|
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
|
|
|