Home | History | Annotate | Download | only in gtk
      1 # Copyright (C) 2010 Igalia S.L. All rights reserved.
      2 #
      3 # This library is free software; you can redistribute it and/or
      4 # modify it under the terms of the GNU Library General Public
      5 # License as published by the Free Software Foundation; either
      6 # version 2 of the License, or (at your option) any later version.
      7 #
      8 # This library is distributed in the hope that it will be useful,
      9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     11 # Library General Public License for more details.
     12 #
     13 # You should have received a copy of the GNU Library General Public License
     14 # along with this library; see the file COPYING.LIB.  If not, write to
     15 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     16 # Boston, MA 02110-1301, USA.
     17 
     18 
     19 # Path to the Buildbot slave directory
     20 #
     21 buildbot_path="/home/slave/webkitgtk"
     22 
     23 # User account used to run Buildbot.
     24 #
     25 buildbot_user="slave"
     26 
     27 # Path to a directory where to log Buildbot output
     28 #
     29 buildbot_log_path="/var/log/buildbot"
     30 
     31 
     32 # Display number under which Xvfb will run
     33 #
     34 xvfb_display=":10"
     35 
     36 # Graphical mode which Xvfb will report to applications
     37 #
     38 xvfb_mode="1024x768x24"
     39 
     40 # Path to a directory where to log Xvfb error output
     41 #
     42 xvfb_log_path="/var/log/xvfb"
     43 
     44 
     45 # Output directory for core dumps. Set this to an empty string to
     46 # disable recording them.
     47 #
     48 crashmon_output="/var/www/webkitgtk-coredumps"
     49 
     50 # Maximum size of core dumps. With the default "unlimited" setting
     51 # it is recommended to have ~20GB for cores in 64-bit machines.
     52 # For 32-bit bots, less space is needed.
     53 #
     54 crashmon_max_size="unlimited"
     55 
     56 # Path to a directory where to log crashmon output
     57 #
     58 crashmon_log_path="/var/log/crashmon"
     59 
     60 # A list of e-mail addresses where to send notifications of core dumps.
     61 # Leave empty to disable mail notifications.
     62 #
     63 # WARNING: E-mail addresses will be flooded with messages!
     64 #
     65 crashmon_mailto=""
     66 
     67 # Base directory where to find sources and built binaries of which
     68 # crash dumps are to be catched. Usually you will not need to change this.
     69 #
     70 crashmon_src_path="${buildbot_path}/gtk-linux-${buildbot_bits}-debug/build"
     71 crashmon_bin_path="${crashmon_src_path}/WebKitBuild/Debug/Programs"
     72 
     73 
     74 # If you want to use ccache, set a path to where synlinks with tool
     75 # names pointing to ccache are installed. In Debian systems this
     76 # would be /usr/lib/ccache. Set to empty to disable.
     77 #
     78 ccache_path="/usr/lib/ccache"
     79 
     80 
     81 # Environment variables. Prefix them with "env_".
     82 #
     83 env_CFLAGS="-pipe"
     84 env_CXXFLAGS="-pipe"
     85 env_WebKitMakeArguments="-j3"
     86 env_WEBKIT_TESTFONTS="/home/${buildbot_user}/testfonts"
     87 
     88