2 # -*-perl-*- hey - emacs - this is a perl file
6 Copyright (c) 2003-2010, Andrew Dunstan
8 See accompanying License file for license details
18 # use vars qw($VERSION); $VERSION = 'REL_0.1';
23 $branch = $main::branch;
26 # This template assumes that the user running the buildfarm process is "farm"
29 # default is github mirror of Exim
30 scmrepo => 'https://github.com/Exim/exim.git',
31 # webref for diffs on server - use default for community
33 # for --reference on git repo
34 # git_reference => undef,
35 # or gmake if required. can include path if necessary.
37 # 1 = any make will do, 0 = require GNU (default)
39 # >1 for parallel "make" and "make check" steps
41 # default is "tar -z -cf runlogs.tgz *.log"
42 # replacement must have the same effect
43 # must be absolute, can be either Unix or Windows style for MSVC
45 # this directory must exist before anything will work
46 build_root => '/home/farm/buildfarm',
47 # set true to do vpath builds
50 keep_error_builds => 0,
51 # Linux style, use "*.core" for BSD
52 core_file_glob => "core*",
54 # build process will connect to this URL to upload results
55 target => "http://eximbuild.mrball.net/cgi-bin/eximstatus.pl",
56 # update_personality uses this when you want to update your
57 # machine's info (OS, version, compiler, version)
58 upgrade_target => "http://eximbuild.mrball.net/cgi-bin/upgrade.pl",
60 # Your host alias and password in the BuildFarm
61 animal => "alias_assigned_by_build_team",
62 secret => "secret_assigned_by_build_team",
64 # if force_every is a scalar it will be used on all branches, like this
66 # force_every => 336 , # max hours between builds, undef or 0 = unforced
67 # we now prefer it to be a hash with branch names as the keys, like this
69 # this setting should be kept conservatively high, or not used at all -
70 # for the most part it's best to let the script decide if something
71 # has changed that requires a new run for the branch.
73 # an entry with a name of 'default' matches any branch not named
79 # alerts are triggered if the server doesn't see a build on a branch after
80 # this many hours, and then sent out every so often,
82 #HEAD => { alert_after => 72, alert_every => 24 },
85 print_success => undef,
87 # include / exclude pattern for files whose trigger a build
88 # if both are specified then they are both applied as filters
89 # undef means don't ignore anything.
90 # exclude qr[/(doc|po)/] to ignore changes to docs and po files (recommended)
91 # undef means null filter.
92 trigger_exclude => qr[/(doc|po)/],
93 trigger_include => undef,
95 # settings for mail notices - default to notifying nobody
96 # these lists contain addresses to be notified
97 # must be complete email addresses, as the email is sent from the server
99 all => [], # unconditional
100 fail => [], # if this build fails
101 change => [], # if this build causes a state change
102 green => [], # if this build causes a state change to/from OK
105 # env settings to apply within build/report process
106 # these settings will be seen by all the processes, including the
109 # use a dedicated cache for the build farm. this should give us
110 # very high hit rates and slightly faster cache searching.
111 CCACHE_DIR => "/home/farm/buildfarm/ccache/$branch",
113 ### set this if you need a proxy setting for the
114 # outbound web transaction that reports the results
115 # BF_PROXY => 'http://my.proxy.server:portnum/',
118 # Environment settings on the make commandline.
119 # These cause full compile output and don't strip the binary.
120 make_args => q/FULLECHO='' STRIP_COMMAND=''/,
122 # Settings to add to Local/Makefile. These will set or override
123 # previous definitions of variables. Example:
124 # LDFLAGS => '-Wall' will create LDFLAGS = '-Wall'
126 # comment out if not using ccache
128 # Required for some tests to pass
129 AUTH_PLAINTEXT => 'yes',
130 SUPPORT_MAILDIR => 'yes',
131 # Other examples. Could use makefile_regex instead.
132 #SUPPORT_TLS => 'yes',
133 #USE_OPENSSL_PC => 'openssl',
134 #TLS_LIBS => '-lssl -lcrypto',
135 #EXPERIMENTAL_SPF => 'yes',
136 #LOOKUP_LDAP => 'yes',
137 #LOOKUP_INCLUDE => '-I/usr/include/mysql',
138 #LOOKUP_LIBS => '-lmysqlclient -lpq -lldap -llber',
139 #LDAP_LIB_TYPE => 'OPENLDAP2',
141 # Settings to add to Local/Makefile. These will add to variables that
142 # are already defined earlier in the Makefile. Example:
143 # LDFLAGS => '-Wall' will create LDFLAGS+='-Wall'
145 # Show all warnings and errors
146 CFLAGS => '-Wall -Werror=format-security',
147 # Or enable debugging flags
148 #CFLAGS => '-g -Wall',
150 # If set EXPERIMENTAL_SPF above, add it to the linker:
151 #LDFLAGS => '-lspf2',
154 # Another way to enable things in the Local/Makefile.
155 # Use a simple regex to change a default to what you want.
157 # If have perl devel libraries installed, can build embedded perl
158 #q(s/^# EXIM_PERL=/EXIM_PERL=/),
159 # If have mysql devel libraries installed
160 #q(s/^# LOOKUP_MYSQL=/LOOKUP_MYSQL=/),
161 # If have postgres devel librarires installed
162 #q(s/^# LOOKUP_PGSQL=/LOOKUP_PGSQL=/),
163 # Severl experimental features to consider
164 #q(s/^# EXPERIMENTAL_CERTNAMES.*/EXPERIMENTAL_CERTNAMES=yes/),
165 #q(s/^# EXPERIMENTAL_DNSSEC.*/EXPERIMENTAL_DNSSEC=yes/),
166 # Proxy causes some extra debug output messing with tests
167 #q(s/^# EXPERIMENTAL_PROXY.*/EXPERIMENTAL_PROXY=yes/),
168 #q(s/^# EXPERIMENTAL_TPDA.*/EXPERIMENTAL_TPDA=yes/),
171 # The user compiled as the master exim username.
172 # Requirement: The buildfarm user that runs the build farm script *MUST* have
173 # the group of the exim user as a secondary group. Example:
174 # user=>farm, group=>farm, secondary_groups=>exim
175 # user=>exim, group=>exim
176 master_exim_user => "exim",
178 # Range of tests to run if enable make_test in optional steps.
179 #range_num_tests => '1 999',
180 range_num_tests => '1 5999',
181 # Hardcode some valid version for use during make test
182 exim_test_version => '4.84',
185 # which optional steps to run and when to run them
186 # 'make-doc' => {min_hours_since => 24*7},
187 test => {min_hours_since => 24*7},
191 locales => [qw( C )],
193 # Placemarker for auto-generated build features
200 if ($branch eq 'global')
203 $conf{branches_to_build} = 'ALL';
205 # or 'HEAD_PLUS_LATEST' or 'HEAD_PLUS_LATEST2'
206 # or [qw( HEAD RELx_y_STABLE etc )]
210 ##################################
212 # Can use perl below for
213 # per branch processing.
215 ##################################