Jenkinsfile: added stage to be more verbose
This commit is contained in:
parent
b02f737418
commit
da42edcc0c
12
automation/Jenkinsfile
vendored
12
automation/Jenkinsfile
vendored
@ -4,7 +4,7 @@ pipeline {
|
|||||||
BUILDDIR = 'build-unittests'
|
BUILDDIR = 'build-unittests'
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Configure') {
|
stage('Create Docker') {
|
||||||
agent {
|
agent {
|
||||||
dockerfile {
|
dockerfile {
|
||||||
dir 'automation'
|
dir 'automation'
|
||||||
@ -14,6 +14,16 @@ pipeline {
|
|||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'rm -rf $BUILDDIR'
|
sh 'rm -rf $BUILDDIR'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Configure') {
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
dir 'automation'
|
||||||
|
reuseNode true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
dir(BUILDDIR) {
|
dir(BUILDDIR) {
|
||||||
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..'
|
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user