Skip to content

Instantly share code, notes, and snippets.

@Rodrigo0461
Last active June 17, 2019 18:34
Show Gist options
  • Save Rodrigo0461/ab8df6b303c48dcd9d2ef6e62d6c1c06 to your computer and use it in GitHub Desktop.
Save Rodrigo0461/ab8df6b303c48dcd9d2ef6e62d6c1c06 to your computer and use it in GitHub Desktop.
Pipeline Jenkinsfile steps post on stage
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