mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-10 02:39:03 +08:00
add a ctest testsuite.cmake script to simplify the generation of nightly builds
This commit is contained in:
parent
51aa62a5d4
commit
b315f4c359
@ -6,4 +6,4 @@
|
||||
#pragma warning( disable : 4181 4244 4127 4211 )
|
||||
#endif
|
||||
|
||||
#endif // EIGEN_DISABLEMSVCWARNINGS_H
|
||||
#endif // EIGEN_DISABLEMSVCWARNINGS_H
|
||||
|
@ -5,4 +5,4 @@
|
||||
#pragma warning( pop )
|
||||
#endif
|
||||
|
||||
#endif // EIGEN_ENABLEMSVCWARNINGS_H
|
||||
#endif // EIGEN_ENABLEMSVCWARNINGS_H
|
||||
|
184
test/testsuite.cmake
Normal file
184
test/testsuite.cmake
Normal file
@ -0,0 +1,184 @@
|
||||
|
||||
####################################################################
|
||||
#
|
||||
# Usage:
|
||||
# - create a new folder, let's call it cdash
|
||||
# - in that folder, do:
|
||||
# ctest -S path/to/eigen2/test/testsuite.cmake[,option1=value1[,option2=value2]]
|
||||
#
|
||||
# Options:
|
||||
# - EIGEN_CXX: compiler, eg.: g++-4.2
|
||||
# - EIGEN_SITE: eg, INRIA-Bdx_pc-gael
|
||||
# - EIGEN_ARCH: can be: i386, x86_64, ia64, powerpc, etc.
|
||||
# - EIGEN_OS_VERSION: e.g.: opensuse-11.1, cygwin, windows-vista, freebsd, debian, solaris, osx-leopard
|
||||
# - EIGEN_BUILD_NAME_PREFIX: a string appended to the build-name
|
||||
# The default build name is: EIGEN_OS_VERSION-EIGEN_ARCH-EIGEN_CXX-EIGEN_BUILD_NAME_PREFIX
|
||||
# - EIGEN_CMAKE_DIR: path to cmake executable
|
||||
# - EIGEN_MODE: dashboard model, can be Experimental, Nightly, or Continuous
|
||||
# default: Nightly
|
||||
# - EIGEN_WORK_DIRECTORY: directory used to download the source files and make the builds
|
||||
# default: folder which contains this script
|
||||
# - CTEST_SOURCE_DIRECTORY: path to eigen's src (use a new and empty folder, not the one you are working on)
|
||||
# default: <EIGEN_WORK_DIRECTORY>/src
|
||||
# - CTEST_BINARY_DIRECTORY: build directory
|
||||
# default: <EIGEN_WORK_DIRECTORY>/nightly-<EIGEN_CXX>
|
||||
#
|
||||
# Here is an example running several compiler on the same system:
|
||||
# #!/bin/bash
|
||||
# EIGEN_ARCH=`uname -m`
|
||||
# EIGEN_SITE=`hostname`
|
||||
# EIGEN_OS_VERSION=opensuse-11.1
|
||||
# COMMON=EIGEN_ARCH=$EIGEN_ARCH,EIGEN_SITE=$EIGEN_SITE,EIGEN_OS_VERSION=$EIGEN_OS_VERSION
|
||||
# ctest -S testsuite.cmake,$COMMON,EIGEN_CXX=g++-3.3
|
||||
# ctest -S testsuite.cmake,$COMMON,EIGEN_CXX=g++-4.1
|
||||
# ctest -S testsuite.cmake,$COMMON,EIGEN_CXX=g++-4.3
|
||||
# ctest -S testsuite.cmake,$COMMON,EIGEN_CXX=icpc,EIGEN_BUILD_NAME_PREFIX=-11.0
|
||||
#
|
||||
####################################################################
|
||||
|
||||
# process the arguments
|
||||
|
||||
set(ARGLIST ${CTEST_SCRIPT_ARG})
|
||||
while(${ARGLIST} MATCHES ".+.*")
|
||||
|
||||
# pick first
|
||||
string(REGEX MATCH "([^,]*)(,.*)?" DUMMY ${ARGLIST})
|
||||
SET(TOP ${CMAKE_MATCH_1})
|
||||
|
||||
# remove first
|
||||
string(REGEX MATCHALL "[^,]*,(.*)" DUMMY ${ARGLIST})
|
||||
SET(ARGLIST ${CMAKE_MATCH_1})
|
||||
|
||||
# decompose as a pair key=value
|
||||
string(REGEX MATCH "([^=]*)(=.*)?" DUMMY ${TOP})
|
||||
SET(KEY ${CMAKE_MATCH_1})
|
||||
|
||||
string(REGEX MATCH "[^=]*=(.*)" DUMMY ${TOP})
|
||||
SET(VALUE ${CMAKE_MATCH_1})
|
||||
|
||||
# set the variable to the specified value
|
||||
if(VALUE)
|
||||
SET(${KEY} ${VALUE})
|
||||
else(VALUE)
|
||||
SET(${KEY} ON)
|
||||
endif(VALUE)
|
||||
|
||||
endwhile(${ARGLIST} MATCHES ".+.*")
|
||||
|
||||
|
||||
####################################################################
|
||||
# Automatically set some user variables if they have not been defined manually
|
||||
####################################################################
|
||||
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
||||
|
||||
if(NOT EIGEN_SITE)
|
||||
site_name(EIGEN_SITE)
|
||||
endif(NOT EIGEN_SITE)
|
||||
|
||||
if(NOT EIGEN_CMAKE_DIR)
|
||||
if(WIN32)
|
||||
SET(EIGEN_CMAKE_DIR "C:/Program Files/CMake/bin/")
|
||||
else(WIN32)
|
||||
SET(EIGEN_CMAKE_DIR "")
|
||||
endif(WIN32)
|
||||
endif(NOT EIGEN_CMAKE_DIR)
|
||||
|
||||
if(NOT EIGEN_OS_VERSION)
|
||||
if(CYGWIN)
|
||||
SET(EIGEN_OS_VERSION cygwin)
|
||||
elseif(WIN32)
|
||||
SET(EIGEN_OS_VERSION windows)
|
||||
elseif(UNIX)
|
||||
SET(EIGEN_OS_VERSION unix)
|
||||
elseif(APPLE)
|
||||
SET(EIGEN_OS_VERSION osx)
|
||||
else(CYGWIN)
|
||||
build_name(EIGEN_OS_VERSION)
|
||||
endif(CYGWIN)
|
||||
endif(NOT EIGEN_OS_VERSION)
|
||||
|
||||
if(NOT EIGEN_ARCH)
|
||||
set(EIGEN_ARCH unknown)
|
||||
endif(NOT EIGEN_ARCH)
|
||||
|
||||
if(NOT EIGEN_BUILD_NAME)
|
||||
set(EIGEN_BUILD_NAME ${EIGEN_OS_VERSION}-${EIGEN_ARCH}-${EIGEN_CXX})
|
||||
|
||||
if(EIGEN_BUILD_NAME_PREFIX)
|
||||
set(EIGEN_BUILD_NAME ${EIGEN_BUILD_NAME}${EIGEN_BUILD_NAME_PREFIX})
|
||||
endif(EIGEN_BUILD_NAME_PREFIX)
|
||||
|
||||
endif(NOT EIGEN_BUILD_NAME)
|
||||
|
||||
if(NOT EIGEN_WORK_DIRECTORY)
|
||||
set(EIGEN_WORK_DIRECTORY ${CTEST_SCRIPT_DIRECTORY})
|
||||
endif(NOT EIGEN_WORK_DIRECTORY)
|
||||
|
||||
if(NOT CTEST_SOURCE_DIRECTORY)
|
||||
SET (CTEST_SOURCE_DIRECTORY "${EIGEN_WORK_DIRECTORY}/src")
|
||||
endif(NOT CTEST_SOURCE_DIRECTORY)
|
||||
|
||||
if(NOT CTEST_BINARY_DIRECTORY)
|
||||
SET (CTEST_BINARY_DIRECTORY "${EIGEN_WORK_DIRECTORY}/nightly_${EIGEN_CXX}")
|
||||
endif(NOT CTEST_BINARY_DIRECTORY)
|
||||
|
||||
if(NOT EIGEN_MODE)
|
||||
set(EIGEN_MODE Nightly)
|
||||
endif(NOT EIGEN_MODE)
|
||||
|
||||
## mandatory variables (the default should be ok in most cases):
|
||||
|
||||
SET (CTEST_CVS_COMMAND "svn")
|
||||
SET (CTEST_CVS_CHECKOUT "${CTEST_CVS_COMMAND} co svn://anonsvn.kde.org/home/kde/trunk/kdesupport/eigen2 \"${CTEST_SOURCE_DIRECTORY}\"")
|
||||
|
||||
# which ctest command to use for running the dashboard
|
||||
SET (CTEST_COMMAND "${EIGEN_CMAKE_DIR}ctest -D ${EIGEN_MODE}")
|
||||
# what cmake command to use for configuring this dashboard
|
||||
SET (CTEST_CMAKE_COMMAND "${EIGEN_CMAKE_DIR}cmake -DEIGEN_BUILD_TESTS=on ")
|
||||
|
||||
####################################################################
|
||||
# The values in this section are optional you can either
|
||||
# have them or leave them commented out
|
||||
####################################################################
|
||||
|
||||
# this make sure we get consistent outputs
|
||||
SET( $ENV{LC_MESSAGES} "en_EN")
|
||||
|
||||
# should ctest wipe the binary tree before running
|
||||
SET (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE)
|
||||
|
||||
# this is the initial cache to use for the binary tree, be careful to escape
|
||||
# any quotes inside of this string if you use it
|
||||
if(WIN32)
|
||||
SET (CTEST_INITIAL_CACHE "
|
||||
MAKECOMMAND:STRING=nmake -i
|
||||
CMAKE_MAKE_PROGRAM:FILEPATH=nmake
|
||||
CMAKE_GENERATOR:INTERNAL=NMake Makefiles
|
||||
SITE:STRING=${EIGEN_SITE}
|
||||
")
|
||||
elseif(APPLE)
|
||||
SET (CTEST_INITIAL_CACHE "
|
||||
BUILDNAME:STRING=${EIGEN_BUILD_NAME}
|
||||
SITE:STRING=${EIGEN_SITE}
|
||||
")
|
||||
else(WIN32)
|
||||
SET (CTEST_INITIAL_CACHE "
|
||||
BUILDNAME:STRING=${EIGEN_BUILD_NAME}
|
||||
SITE:STRING=${EIGEN_SITE}
|
||||
")
|
||||
endif(WIN32)
|
||||
|
||||
# MAKECOMMAND:STRING=nmake -i
|
||||
# CMAKE_MAKE_PROGRAM:FILEPATH=make
|
||||
# CMAKE_GENERATOR:INTERNAL=Makefiles
|
||||
SET (CTEST_INITIAL_CACHE "
|
||||
BUILDNAME:STRING=opensuse-11_1-x86_64-${EIGEN_CXX}
|
||||
SITE:STRING=pc-gael
|
||||
CVSCOMMAND:FILEPATH=/usr/bin/svn"
|
||||
)
|
||||
|
||||
# set any extra environment variables to use during the execution of the script here:
|
||||
|
||||
if(EIGEN_CXX)
|
||||
set(CTEST_ENVIRONMENT "CXX=${EIGEN_CXX}")
|
||||
endif(EIGEN_CXX)
|
Loading…
x
Reference in New Issue
Block a user