eive-obsw/automation/Jenkinsfile

38 lines
929 B
Plaintext
Raw Normal View History

pipeline {
2022-02-17 18:31:21 +01:00
environment {
2022-02-17 18:37:00 +01:00
BUILDDIR_Q7 = 'build_q7'
2022-02-17 18:31:21 +01:00
BUILDDIR_LINUX = 'build_linux'
}
agent {
docker {
2022-04-19 18:18:07 +02:00
image 'eive-obsw-ci:d4'
args '--sysctl fs.mqueue.msg_max=100'
}
2022-02-17 18:31:21 +01:00
}
stages {
stage('Clean') {
steps {
2022-02-17 18:31:21 +01:00
sh 'rm -rf $BUILDDIR_Q7'
sh 'rm -rf $BUILDDIR_LINUX'
}
}
stage('Build Q7S') {
steps {
2022-02-17 18:31:21 +01:00
dir(BUILDDIR_Q7) {
sh 'cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug ..'
sh 'cmake --build . -j4'
}
}
}
2022-02-17 18:31:21 +01:00
stage('Unittests') {
steps {
2022-02-17 18:31:21 +01:00
dir(BUILDDIR_LINUX) {
sh 'cmake ..'
sh 'cmake --build . -t eive-unittest -j4'
2022-02-18 11:47:42 +01:00
sh './eive-unittest'
2022-02-17 18:31:21 +01:00
}
}
}
}
}