-
-
Save roxsross/de2515249561218a92047f1ab0978514 to your computer and use it in GitHub Desktop.
Template Jenkinsfile
This file contains 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('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