Jenkinsfile: added stage to be more verbose

This commit is contained in:
Ulrich Mohr 2021-10-26 20:58:34 +02:00
parent b02f737418
commit da42edcc0c
1 changed files with 11 additions and 1 deletions

View File

@ -4,7 +4,7 @@ pipeline {
BUILDDIR = 'build-unittests'
}
stages {
stage('Configure') {
stage('Create Docker') {
agent {
dockerfile {
dir 'automation'
@ -14,6 +14,16 @@ pipeline {
}
steps {
sh 'rm -rf $BUILDDIR'
}
}
stage('Configure') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
dir(BUILDDIR) {
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..'
}