Showing
1 changed file
with
5 additions
and
4 deletions
| @@ -4,7 +4,7 @@ pipeline { | @@ -4,7 +4,7 @@ pipeline { | ||
| 4 | stage('Build') { | 4 | stage('Build') { |
| 5 | steps { | 5 | steps { |
| 6 | script { | 6 | script { |
| 7 | - echo "teste de build" | 7 | + sh echo "teste de build" |
| 8 | } | 8 | } |
| 9 | 9 | ||
| 10 | } | 10 | } |
| @@ -12,18 +12,19 @@ pipeline { | @@ -12,18 +12,19 @@ pipeline { | ||
| 12 | stage('Test') { | 12 | stage('Test') { |
| 13 | steps { | 13 | steps { |
| 14 | script { | 14 | script { |
| 15 | - echo "teste de test" | 15 | + sh echo "teste de test" |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | } | 18 | } |
| 19 | } | 19 | } |
| 20 | - } | 20 | + |
| 21 | stage('Deploy') { | 21 | stage('Deploy') { |
| 22 | steps { | 22 | steps { |
| 23 | script { | 23 | script { |
| 24 | - echo "teste de deploy" | 24 | + sh echo "teste de deploy" |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | } | 27 | } |
| 28 | } | 28 | } |
| 29 | + } | ||
| 29 | } | 30 | } |
-
Please register or login to post a comment