3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
68 lines
1.8 KiB
XML
68 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Name: TBITCWXBUILDBOT.xml
|
|
-->
|
|
|
|
<bot xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
|
<xi:include href="include/unix.xml"/>
|
|
|
|
<build>
|
|
<name>MinGW x86 trunk</name>
|
|
<builddir>tbitcwxbuildbot_mingw_trunk</builddir>
|
|
<scheduler>trunk_quick</scheduler>
|
|
<steps>
|
|
<checkout/>
|
|
<configure options="--host=i586-mingw32msvc
|
|
--with-cppunit-prefix=/usr/local/i586-mingw32msvc"/>
|
|
<compile-all/>
|
|
</steps>
|
|
</build>
|
|
|
|
<build>
|
|
<name>MinGW x86 stable</name>
|
|
<builddir>tbitcwxbuildbot_mingw_stable</builddir>
|
|
<scheduler>daily_0600</scheduler>
|
|
<steps>
|
|
<checkout branch="{$STABLE_BRANCH}"/>
|
|
<configure options="--host=i586-mingw32msvc
|
|
--with-cppunit-prefix=/usr/local/i586-mingw32msvc"/>
|
|
<compile-all utils="false"/>
|
|
</steps>
|
|
</build>
|
|
|
|
<!--
|
|
Commented out 64-bit builds as no 64-bit compiler at the moment.
|
|
|
|
If you're re-enabling them take out the space between the hyphens of the
|
|
configure options below, e.g. take out the space from "- -host=".
|
|
|
|
<build>
|
|
<name>MinGW x86_64 trunk</name>
|
|
<builddir>tbitcwxbuildbot_mingw64_trunk</builddir>
|
|
<scheduler>trunk_quick</scheduler>
|
|
<steps>
|
|
<checkout/>
|
|
<configure options="- -host=amd64-mingw32msvc
|
|
- -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/>
|
|
<compile-all/>
|
|
</steps>
|
|
</build>
|
|
|
|
<build>
|
|
<name>MinGW x86_64 stable</name>
|
|
<builddir>tbitcwxbuildbot_mingw64_stable</builddir>
|
|
<scheduler>daily_0600</scheduler>
|
|
<steps>
|
|
<checkout branch="{$STABLE_BRANCH}"/>
|
|
<configure options="- -host=amd64-mingw32msvc
|
|
- -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/>
|
|
<compile-all utils="false"/>
|
|
</steps>
|
|
</build>
|
|
|
|
-->
|
|
|
|
</bot>
|