second commit

This commit is contained in:
Nilton Constantino 2025-02-19 08:39:38 +00:00
parent a6ecb42472
commit e8a5c120ed
2 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea

23
Jenkinsfile vendored
View File

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}