test jenkins

This commit is contained in:
Fedor Katurov 2020-03-20 21:06:38 +07:00
parent d5460ea89f
commit 79e1418265

8
Jenkinsfile vendored
View file

@ -18,9 +18,11 @@ pipeline {
sh 'pwd'
sh 'ls'
if($WWW == "") {
currentBuild.result = 'SUCCESS'
return
script {
if("${WWW}" == "") {
currentBuild.result = 'UNSTABLE'
return
}
}
}
}