This commit is contained in:
Marco Santos
2024-09-27 19:56:12 +01:00
parent 718ba1b350
commit 43ada42603

32
Jenkinsfile vendored
View File

@@ -1,23 +1,21 @@
node { pipeline {
stage('Checkout') { agent {
checkout scm dockerfile {
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui)
}
} }
pipeline { stages {
agent { stage('Checkout') {
dockerfile { checkout scm
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui) }
stage('Build') {
steps {
echo 'Construindo o projeto...'
} }
} }
stages { stage('Deploys') {
stage('Build') { steps {
steps { echo 'DEploy o projeto...'
echo 'Construindo o projeto...'
}
}
stage('Deploys') {
steps {
echo 'DEploy o projeto...'
}
} }
} }
} }