This commit is contained in:
Ramesh05 2025-06-24 15:14:35 +00:00 committed by GitHub
commit 1d578f3621
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 35 additions and 0 deletions

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....'
}
}
}
}

14
jenkins file Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('git') {
}
stage('build') {
}
stage('test') {
}
stage ('deploy') {
}
}
}