Files
Geradores/Jenkinsfile
Marco Santos f422db2d7c teste
2024-09-27 19:59:08 +01:00

19 lines
340 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
checkout scm
}
stage('Build') {
steps {
echo 'Construindo o projeto...'
}
}
stage('Deploys') {
steps {
echo 'DEploy o projeto...'
}
}
}
}