mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
512 B
12 lines
512 B
rem This is the Windows Batch Script for the daily builds.
|
|
rem It simply calls the actual MSYS Shell script to perform
|
|
rem the daily build and then the tag builds.
|
|
|
|
cd c:\soft\packaging
|
|
|
|
rem Development build (daily)
|
|
c:\msys\1.0\bin\sh.exe --login c:\soft\packaging\daily_build.sh
|
|
rem Tags build (daily -- only tags that weren't built yet)
|
|
c:\msys\1.0\bin\sh.exe --login c:\soft\packaging\build_tags.sh
|
|
rem 2.4 branch build (weekly)
|
|
c:\msys\1.0\bin\sh.exe --login c:\soft-2.4\packaging\weekly_build.sh |