X-Git-Url: https://git.exim.org/buildfarm-client.git/blobdiff_plain/fea3a9f573dd628854ba148fa9824df424c3dde7..HEAD:/build-farm.conf.template diff --git a/build-farm.conf.template b/build-farm.conf.template index 1ad3e7c..0358811 100644 --- a/build-farm.conf.template +++ b/build-farm.conf.template @@ -17,7 +17,8 @@ use warnings; my $branch = $::branch; -# This could be changed to use the standard layout but in a different place +# This could be changed to use the standard layout but in a different place. +# Appending /buildfarm is common. my $basedir = "$ENV{HOME}"; # This template assumes that the user running the buildfarm process is "farm" @@ -26,7 +27,12 @@ my $farm_user_name = getpwuid($<) // die "$0: can't get user name from uid $<: $ our %conf =( scm => 'git', # default is github mirror of Exim - # Only used for the initial clone (?) + # Only used for the initial clone (?). + # If running multiple animals on a single system, + # consider pointing to a local mirror (git clone --mirror) + # and separately updating that using cron (git -C /mirrordir fetch). + # If running multiple VMs for animals, consider pointing + # to a mirror on the hypervisor. scmrepo => 'https://github.com/Exim/exim.git', # webref for diffs on server - use default for community scm_url => undef, @@ -45,7 +51,8 @@ our %conf =( # If running multiple animals, an explicit common directory for # the lockfile so that runs do not conflict. Otherwise, leave unset. global_lock_dir => $basedir, - # this directory must exist before anything will work + # If running multiple animals, the root must differ for each. + # This directory must exist before anything will work. build_root => "$basedir/buildfarm", # set true to do vpath builds use_vpath => undef, @@ -116,6 +123,7 @@ our %conf =( fail => [], # if this build fails change => [], # if this build causes a state change green => [], # if this build causes a state change to/from OK + # green => ['me@example.com'], }, # env settings to apply within build/report process @@ -141,18 +149,25 @@ our %conf =( makefile_set =>{ # uncomment to use ccache #CC => 'ccache gcc', + HAVE_IPV6 => 'yes', # Required for some tests to pass AUTH_PLAINTEXT => 'yes', SUPPORT_MAILDIR => 'yes', # Other examples. Could use makefile_regex instead. + # + #USE_GDBM = yes + #DBMLIB = -lgdbm # WITH_CONTENT_SCAN => 'yes', - #SUPPORT_TLS => 'yes', + #DISABLE_TLS => 'yes', # Enable the proper libs here or see in makefile_regex # for use of pkg-config - #USE_GNUTLS => 'yes' + #USE_OPENSSL => 'yes', + #USE_GNUTLS => 'yes', #TLS_LIBS => '-lssl -lcrypto', # + # Many testcases need dsearch + LOOKUP_DSEARCH => 'yes', #LOOKUP_LDAP => 'yes', #LOOKUP_INCLUDE => '-I/usr/include/mysql -I/usr/include/postgresql' #LOOKUP_LIBS => '-lmysqlclient -lpq -lldap -llber', @@ -169,7 +184,9 @@ our %conf =( # LDFLAGS => '-Wall' will create LDFLAGS+='-Wall' makefile_add =>{ # Show all warnings and errors - CFLAGS => '-Wall -Werror=format-security', + # Some platforms need the c99 setting enabled; some hate it + #CFLAGS => '-std=c99 -Wall -Wno-parentheses -Werror=format-security', + CFLAGS => '-Wall -Wno-parentheses -Wno-dangling-else -Werror=format-security', # Or enable debugging flags #CFLAGS => '-g -Wall', #LFLAGS => '-g', @@ -220,6 +237,12 @@ our %conf =( qw() ], + # Configuration tuning for test suite ./configure + test_configure_env => {}, + test_configure_args => [], + # Configuration tuning for test suite run + # eg. test_run_args = '-FLAVOUR openssl_1_1_1', + test_run_args => '', ); if ($branch eq 'global')