Skip to content
Snippets Groups Projects
Commit 8b6d84d4 authored by Lars Bilke's avatar Lars Bilke Committed by Lars Bilke
Browse files

[Jenkins] Test OGS_USE_MPI on envinf1.

parent 1b19044c
No related branches found
No related tags found
No related merge requests found
DIR="$( cd "$( dirname $(readlink -f $0 ))" && pwd )"
DIR=$( cd $(dirname $0) ; pwd -P )
source $DIR/cli.sh
module load shapelib/1.3.0_gcc_4.8.1
DIR=$( cd $(dirname "${BASH_SOURCE[0]}") ; pwd -P )
source $DIR/cli.sh
export CC=`which mpicc`
export CXX=`which mpicxx`
......@@ -3,27 +3,38 @@ def defaultCMakeOptions =
'-DOGS_LIB_BOOST=System ' +
'-DOGS_LIB_VTK=System ' +
'-DBUILD_SHARED_LIBS=ON ' +
'-DOGS_BUILD_UTILS=ON'
'-DOGS_BUILD_UTILS=ON '
def configure = new ogs.configure()
def build = new ogs.build()
def post = new ogs.post()
def helper = new ogs.helper()
stage('Configure (Linux-Docker-Dynamic)') {
stage('Configure (envinf1)') {
configure.linux(cmakeOptions: defaultCMakeOptions, env: 'envinf1/cli.sh', script: this)
configure.linux(cmakeOptions: defaultCMakeOptions + '-DOGS_USE_MPI=ON',
dir: 'build-mpi', env: 'envinf1/mpi.sh', script: this)
}
stage('CLI (Linux-Docker-Dynamic)') {
build.linux(env: 'envinf1/cli.sh', script: this)
stage('CLI (envinf1)') {
parallel serial: {
build.linux(env: 'envinf1/cli.sh', script: this)
}, mpi: {
build.linux(dir: 'build-mpi', env: 'envinf1/mpi.sh', script: this)
}
}
stage('Test (Linux-Docker-Dynamic)') {
build.linux(env: 'envinf1/cli.sh', script: this, target: 'tests ctest')
stage('Test (envinf1)') {
parallel serial: {
build.linux(env: 'envinf1/cli.sh', script: this, target: 'tests ctest')
}, mpi: {
build.linux(dir: 'build-mpi', env: 'envinf1/mpi.sh', script: this,
target: 'tests ctest')
}
}
stage('Post (Linux-Docker-Dynamic)') {
post.publishTestReports 'build/Testing/**/*.xml', 'build/Tests/testrunner.xml',
stage('Post (envinf1)') {
post.publishTestReports 'build*/Testing/**/*.xml', 'build*/Tests/testrunner.xml',
'ogs/scripts/jenkins/clang-log-parser.rules'
post.cleanup()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment