Create Jenkinsfile

Signed-off-by: pushpa0285 <pushpadocument@gmail.com>
This commit is contained in:
pushpa0285 2025-06-17 16:00:39 +05:30 committed by GitHub
parent dade7fcf31
commit a3a96efb29
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....'
}
}
}
}