2020-04-01 11:44:38 +00:00
|
|
|
---
|
|
|
|
- job:
|
|
|
|
name: jjb-deploy
|
|
|
|
project-type: pipeline
|
|
|
|
sandbox: true
|
|
|
|
dsl: |
|
|
|
|
def GIT_REPO = 'http://github.com/ceph/ceph-csi'
|
|
|
|
def GIT_BRANCH = 'ci/centos'
|
|
|
|
node {
|
|
|
|
stage('checkout ci repository') {
|
|
|
|
git url: "${GIT_REPO}", branch: "${GIT_BRANCH}", changelog: false
|
|
|
|
}
|
|
|
|
stage('validation') {
|
|
|
|
sh './deploy/jjb.sh deploy'
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 15:41:05 +00:00
|
|
|
scm:
|
|
|
|
git:
|
2020-05-27 12:22:56 +00:00
|
|
|
name: origin
|
2020-05-26 15:41:05 +00:00
|
|
|
url: https://github.com/ceph/ceph-csi
|
|
|
|
branches:
|
|
|
|
- ci/centos
|
2020-04-01 11:44:38 +00:00
|
|
|
triggers:
|
2020-05-26 15:41:05 +00:00
|
|
|
- pollscm:
|
|
|
|
cron: "H/5 * * * *"
|