Atualizar 'PipelineTestJenkins'

master
Alberto Trevezani 2020-01-22 18:55:57 +00:00
parent 8b01e9f211
commit 357c815d03
1 changed files with 2 additions and 2 deletions

View File

@ -8,10 +8,10 @@ pipeline {
stages { stages {
stage('api') { stage('api') {
if (params.api-test-1) { if ($params.api-test-1) {
echo "Teste 1" echo "Teste 1"
} }
if (params.api-test-2) { if ($params.api-test-2) {
echo "Teste 2" echo "Teste 2"
} }
} }