mirror of https://github.com/CGAL/cgal
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# -*- mode: shell-script -*-
|
|
BUILD_HOSTS="localhost"
|
|
PROCESSORS_localhost=4
|
|
#PROCESSORS_localhost=2
|
|
#COMPILERS_localhost="i686_Linux-2.6_g++-4.1.2_CentOS-5.1-O3 i686_Linux-2.6_g++-4.1.2_CentOS-5.1-O2 i686_Linux-2.6_g++-4.1.2_CentOS-5.1 i686_Linux-2.6_g++-4.3.2_CentOS-5.1-O3 i686_Linux-2.6_g++-4.3.2_CentOS-5.1"
|
|
COMPILERS_localhost="i686_Linux-2.6_g++-4.3.2_CentOS-5.1"
|
|
CGAL_TESTER="lrineau"
|
|
CGAL_TESTER_NAME="cgal (GF)"
|
|
CGAL_TESTER_ADDRESS=Laurent.Rineau__cgal_testsuite@normalesup.org
|
|
|
|
CGAL_ROOT=/home/lrineau/CGAL/releases-and-testsuites
|
|
LOGS_DIR="${CGAL_ROOT}/AUTOTEST_LOGS"
|
|
LOCK_FILE="${CGAL_ROOT}/autotest_cgal_with_cmake.lock"
|
|
|
|
# Do not output anything on console (otherwise crond sens emails)
|
|
CONSOLE_OUTPUT=""
|
|
|
|
# QTDIR
|
|
source /etc/profile.d/qt.sh
|
|
|
|
# set locale
|
|
LC_ALL=C
|
|
LANG=C
|
|
export LC_ALL
|
|
export LANG
|
|
|
|
# pass QTDIR and locale to the shell
|
|
MYSHELL="QTDIR=$QTDIR LC_ALL=C LANG=C /bin/sh -c"
|
|
|
|
# Prevent core files :
|
|
# ulimit -c 0
|
|
# 3 hours maximum per process.
|
|
# ulimit -t 10800
|
|
# Maximum memory to be used : 2GB
|
|
# ulimit -v 2000000
|
|
# Maximum files size : 500MB
|
|
ULIMIT_OPTIONS="-H -c 0 -t 10800 -v 2000000 -t 500000"
|
|
|
|
|
|
UPLOAD_RESULT_DESTINATION="cgaltest@cgaltest.geometryfactory.com:incoming"
|