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

8
Jenkinsfile vendored
View File

@@ -1,7 +1,3 @@
node {
stage('Checkout') {
checkout scm
}
pipeline {
agent {
dockerfile {
@@ -9,6 +5,9 @@ node {
}
}
stages {
stage('Checkout') {
checkout scm
}
stage('Build') {
steps {
echo 'Construindo o projeto...'
@@ -21,4 +20,3 @@ node {
}
}
}
}