mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Stop building svn based tags. Those were for 2.4 and older Prepare to do weekly 2.6 builds once we that branch is created git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23775 57a11ea4-9604-0410-9ed3-97b8803252fd
13 lines
675 B
Batchfile
13 lines
675 B
Batchfile
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\gnucash\repos\packaging\win32\
|
|
|
|
rem Development build (daily)
|
|
c:\msys\1.0\bin\sh.exe --login c:\soft\gnucash\repos\packaging\win32\daily_build_git.sh
|
|
rem Tags build for 2.5 and newer (daily -- only tags that weren't built yet)
|
|
c:\msys\1.0\bin\sh.exe --login c:\soft\gnucash\repos\packaging\win32\build_tags_git.sh
|
|
rem 2.6 branch build (weekly)
|
|
rem There's no 2.6 branch yet. Hence the line below is commented out
|
|
rem c:\msys\1.0\bin\sh.exe --login c:\soft-2.6\gnucash\repos\packaging\weekly_build.sh |