ceph-csi/jobs/build-images.yaml
Niels de Vos 1700f8585c ci: add a build-images job
The new 'build-images' job rebuilds ceph-csi:canary, ceph-csi:devel and
ceph-csi:test images after a PR has been merged in the master branch.
These images can then be used by other CI jobs, to improve the speed by
reducing unneeded rebuilds of the images.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
2020-10-30 13:07:58 +00:00

43 lines
1.3 KiB
YAML

---
- job:
name: build-images
description: Build container images from the master branch.
project-type: pipeline
concurrent: false
properties:
- github:
url: https://github.com/ceph/ceph-csi
- build-discarder:
days-to-keep: 7
artifact-days-to-keep: 7
# yamllint disable rule:line-length
dsl: |
def GIT_REPO = 'http://github.com/ceph/ceph-csi'
def GIT_BRANCH = 'master'
node {
stage('checkout repository') {
git url: "${GIT_REPO}", branch: "${GIT_BRANCH}", changelog: false
}
stage('build images') {
parallel canary: {
sh 'source build.env && oc start-build --follow --build-arg=BASE_IMAGE="${BASE_IMAGE}" --build-arg=GO_ARCH=amd64 ceph-csi-canary'
},
test: {
sh 'oc start-build --follow ceph-csi-test'
},
devel: {
sh 'source build.env && oc start-build --follow --build-arg=BASE_IMAGE="${BASE_IMAGE}" ceph-csi-devel'
}
}
}
# yamllint enable rule:line-length
scm:
- git:
name: origin
url: https://github.com/ceph/ceph-csi
branches:
- master
triggers:
- pollscm:
cron: "H/5 * * * *"