Commit 01bfc697 authored by Dominik Charousset's avatar Dominik Charousset

try fix Jenkins

parent ff27b948
...@@ -167,14 +167,15 @@ pipeline { ...@@ -167,14 +167,15 @@ pipeline {
getSources(config) getSources(config)
} }
} }
/*
stage('Build') { stage('Build') {
steps { steps {
buildParallel(config) buildParallel(config)
} }
} }
*/
stage('Autobahn Testsuite') { stage('Autobahn Testsuite') {
steps { agent { docker { image "sources/.ci/autobahn-testsuite" } }
node(docker) {
steps { steps {
script { script {
echo "Starting autobahn docker" echo "Starting autobahn docker"
...@@ -198,9 +199,6 @@ pipeline { ...@@ -198,9 +199,6 @@ pipeline {
set(CMAKE_BUILD_TYPE "release" CACHE STRING "") set(CMAKE_BUILD_TYPE "release" CACHE STRING "")
""" """
]) ])
echo "start docker"
def image = docker.build('autobahn-testsuite', "sources/.ci/autobahn-testsuite")
image.inside("--cap-add SYS_PTRACE") {
echo "start build" echo "start build"
sh "./sources/.ci/run.sh build '$initFile' '$sourceDir' '$buildDir'" sh "./sources/.ci/run.sh build '$initFile' '$sourceDir' '$buildDir'"
warnError('Unit Tests failed!') { warnError('Unit Tests failed!') {
...@@ -211,9 +209,6 @@ pipeline { ...@@ -211,9 +209,6 @@ pipeline {
} }
} }
} }
}
}
}
stage('Notify') { stage('Notify') {
steps { steps {
collectResults(config, PrettyJobName) collectResults(config, PrettyJobName)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment