Atualizar 'PipelineTestJenkins'

master
Alberto Trevezani 2020-01-22 19:06:37 +00:00
parent 830043153c
commit 8b418bc030
1 changed files with 7 additions and 5 deletions

View File

@ -11,12 +11,14 @@ pipeline {
steps { steps {
echo "Teste" echo "Teste"
if ($params.apiTest1) { script {
echo "api-test-1: OK" if ($params.apiTest1) {
} echo "api-test-1: OK"
}
if ($params.apiTest2) { if ($params.apiTest2) {
echo "api-test-2: OK" echo "api-test-2: OK"
}
} }
} }
} }