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

[Jenkins] Added envinf1 parallel job.

parent ce13fc4f
No related branches found
No related tags found
No related merge requests found
......@@ -124,6 +124,7 @@ pipeline {
}
}
}
// ************************** envinf1 **********************************
stage('Envinf1 (serial)') {
agent { label "envinf1"}
steps {
......@@ -154,6 +155,37 @@ pipeline {
}
}
}
stage('Envinf1 (parallel)') {
agent { label "envinf1"}
steps {
script {
configure {
cmakeOptions =
'-DCMAKE_BUILD_TYPE=Release ' +
'-DOGS_BUILD_UTILS=ON ' +
'-DOGS_BUILD_METIS=ON ' +
'-DBUILD_SHARED_LIBS=ON ' +
'-DOGS_USE_PETSC=ON '
env = 'envinf1/petsc.sh'
}
build { env = 'envinf1/petsc.sh' }
build {
env = 'envinf1/petsc.sh'
target = 'tests'
}
build {
env = 'envinf1/petsc.sh'
target = 'ctest'
}
}
}
post {
always {
publishReports { }
dir('build') { deleteDir() }
}
}
}
// ************************** Windows **********************************
stage('Win') {
agent {label 'win && conan' }
......
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