mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +00:00
Update Jenkinsfile
This commit is contained in:
parent
d2e3830e4e
commit
561b4bebda
1 changed files with 6 additions and 5 deletions
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
|
@ -1,7 +1,8 @@
|
|||
@Library('my-pipeline-library')_
|
||||
|
||||
myDeliveryPipeline(branch: 'master', scmUrl: 'ssh://git@myScmServer.com/repos/myRepo.git',
|
||||
email: 'mrcool435@gmail.com', serverPort: '8080',
|
||||
developmentServer: 'dev-myproject.mycompany.com',
|
||||
stagingServer: 'staging-myproject.mycompany.com',
|
||||
productionServer: 'production-myproject.mycompany.com')
|
||||
myDeliveryPipeline(properties([
|
||||
parameters([
|
||||
string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build')
|
||||
choice(name: 'RUN_TEST', choices: ['yes', 'no'], description: 'Run test while build')
|
||||
])
|
||||
]))
|
||||
|
|
Loading…
Reference in a new issue