Release v3.0.0 #532

Merged
mohr merged 151 commits from development into master 2022-01-10 14:52:32 +01:00
Showing only changes of commit da42edcc0c - Show all commits

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 ..'
}