Create Jenkinsfile

Signed-off-by: neenususanjohn <susanneenu27@gmail.com>
This commit is contained in:
neenususanjohn 2025-06-21 18:46:21 +05:30 committed by GitHub
parent 24eac813cf
commit ac8f761b8d
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....'
}
}
}
}