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 'pwd'
sh 'ls' sh 'ls'
if($WWW == "") { script {
currentBuild.result = 'SUCCESS' if("${WWW}" == "") {
return currentBuild.result = 'UNSTABLE'
return
}
} }
} }
} }