Last active
June 17, 2019 18:34
-
-
Save Rodrigo0461/ab8df6b303c48dcd9d2ef6e62d6c1c06 to your computer and use it in GitHub Desktop.
Pipeline Jenkinsfile steps post on stage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('Test') { | |
steps { | |
sh label: '', script: 'hola mundo ' | |
} | |
post{ | |
failure { | |
echo "ejecutando ...." | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment