This commit is contained in:
gopi vurata 2023-01-07 08:53:51 +05:30
parent 43412ee1ea
commit cbe5303f4e

5
Jenkinsfile vendored
View file

@ -1,6 +1,9 @@
pipeline {
agent { label 'node' }
parameters { choice(name: 'CHOICES', choices: ['main', 'new_branch', 'spring_master','gopi' ], description: 'using parameters') }
parameters {
string(name: 'branch', defaultValue: 'gopi', description: 'job build on default branch master')
// choice(name: 'CHOICES', choices: ['main', 'new_branch', 'spring_master','gopi' ], description: 'using parameters')
}
triggers { pollSCM('* * * * *') }
stages {
stage('git') {