Skip to content

Instantly share code, notes, and snippets.

@roxsross
Created December 29, 2023 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roxsross/de2515249561218a92047f1ab0978514 to your computer and use it in GitHub Desktop.
Save roxsross/de2515249561218a92047f1ab0978514 to your computer and use it in GitHub Desktop.
Template Jenkinsfile
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Compilando el código...'
}
}
stage('Pruebas') {
steps {
echo 'Ejecutando pruebas...'
}
}
stage('Despliegue') {
steps {
echo 'Desplegando la aplicación...'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment