This commit is contained in:
Michaël Pailloncy 2017-03-06 17:57:27 +01:00
parent f3ba8fba2d
commit 2ff6113dc2

10
Jenkinsfile vendored
View file

@ -28,6 +28,7 @@ pipeline {
stage("tests") {
steps {
parallel (
"static-analysis" : {
node("build") {
@ -42,6 +43,7 @@ pipeline {
"performance-tests": {
node("test") {
echo "performance tests"
sh "ls -rtl"
sleep 20
}
}
@ -49,12 +51,18 @@ pipeline {
}
}
stage("user-interaction") {
agent none
steps {
input "Deploy ?"
}
}
stage("deploy") {
agent { label "ssh" }
steps {
unstash name:"binary"
sh "ls -rtl target/"
input "Deploy ?"
}
}
}