This commit is contained in:
Ramesh05 2025-06-24 15:15:07 +00:00 committed by GitHub
commit cb0472b23d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

21
Jenkinsfile vendored Normal file
View file

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