wxWidgets/build/buildbot/config/csleobuild.xml
Vadim Zeitlin 674c3fffbb Don't build wxOSX/Cocoa twice in wxOSX buildbot.
Both trunk builds were using Cocoa, change the one supposed to be Carbon to
use Carbon instead.

Also add Carbon stable branch build as this is probably even more important
than testing Carbon in the trunk.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75358 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2013-12-07 12:30:46 +00:00

68 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Name: csleobuild.xml
Purpose:
Author:
Copyright:
Licence:
-->
<bot xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="include/csleobuild.xml"/>
<build>
<name>OSX 10.5 Intel wxOSX Cocoa trunk</name>
<builddir>csleo_cocoa</builddir>
<scheduler>trunk_quick</scheduler>
<steps>
<checkout/>
<configure/>
<compile-all/>
<run-tests/>
</steps>
</build>
<build>
<name>OSX 10.5 Intel wxOSX Carbon trunk</name>
<builddir>csleo_carbon</builddir>
<scheduler>trunk_quick</scheduler>
<steps>
<checkout/>
<configure options="--with-osx_carbon"/>
<compile-all/>
<run-tests/>
</steps>
</build>
<build>
<name>OSX 10.5 Intel wxOSX Cocoa Stable</name>
<builddir>csleo_stable_cocoa</builddir>
<scheduler>stable_quick</scheduler>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
<configure/>
<compile-all/>
<run-tests/>
</steps>
</build>
<build>
<name>OSX 10.5 Intel wxOSX Carbon Stable</name>
<builddir>csleo_stable_carbon</builddir>
<scheduler>stable_quick</scheduler>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
<configure options="--with-osx_carbon"/>
<compile-all/>
<run-tests/>
</steps>
</build>
</bot>