]> git.saurik.com Git - wxWidgets.git/commitdiff
Added buildbot slave configuration for brandt64.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 17 Oct 2012 00:24:11 +0000 (00:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 17 Oct 2012 00:24:11 +0000 (00:24 +0000)
New 64 bit build slave ran by Gerald Brandt with just a couple of builds for
now.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72694 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/buildbot/config/brandt64.xml [new file with mode: 0644]

diff --git a/build/buildbot/config/brandt64.xml b/build/buildbot/config/brandt64.xml
new file mode 100644 (file)
index 0000000..fef06ef
--- /dev/null
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!--
+    Name:       brandt64.xml
+    RCS-ID:     $Id$
+-->
+
+<bot xmlns:xi="http://www.w3.org/2001/XInclude">
+
+<xi:include href="include/unix.xml"/>
+
+<build>
+    <name>Linux x64 wxGTK trunk</name>
+    <builddir>brandt64_gtk</builddir>
+    <scheduler>trunk_quick</scheduler>
+    <steps>
+        <checkout/>
+        <configure options="--enable-compat28 --enable-debug"/>
+        <compile-all/>
+        <run-tests/>
+    </steps>
+</build>
+
+<build>
+    <name>Linux x64 wxGTK trunk STL no compat</name>
+    <builddir>brandt64_gtk_stl</builddir>
+    <scheduler>trunk_quick</scheduler>
+    <steps>
+        <checkout/>
+        <configure options="--disable-compat28 --enable-stl"/>
+        <compile-all/>
+        <run-tests/>
+    </steps>
+</build>
+
+</bot>