2020-05-15 11:47:42 +00:00
|
|
|
def cico_retries = 16
|
|
|
|
def cico_retry_interval = 60
|
2022-12-08 17:18:15 +00:00
|
|
|
def duffy_pool = 'virt-ec2-t2-centos-8s-x86_64'
|
2020-05-15 11:47:42 +00:00
|
|
|
def ci_git_repo = 'https://github.com/ceph/ceph-csi'
|
|
|
|
def ci_git_branch = 'ci/centos'
|
2020-08-12 10:08:40 +00:00
|
|
|
def git_repo = 'https://github.com/ceph/ceph-csi'
|
2021-02-25 08:23:57 +00:00
|
|
|
def ref = "devel"
|
|
|
|
def git_since = 'devel'
|
2020-08-12 10:08:40 +00:00
|
|
|
def workdir = '/opt/build/go/src/github.com/ceph/ceph-csi'
|
|
|
|
def doc_change = 0
|
2020-10-30 14:48:16 +00:00
|
|
|
// private, internal container image repository
|
2020-11-18 07:36:03 +00:00
|
|
|
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
|
|
|
def cached_image = "ceph-csi"
|
2020-11-02 16:08:09 +00:00
|
|
|
def use_test_image = 'USE_PULLED_IMAGE=yes'
|
|
|
|
def use_build_image = 'USE_PULLED_IMAGE=yes'
|
2020-05-15 11:47:42 +00:00
|
|
|
|
2020-10-30 16:29:28 +00:00
|
|
|
def ssh(cmd) {
|
|
|
|
sh "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} '${cmd}'"
|
|
|
|
}
|
|
|
|
|
2020-11-18 12:22:40 +00:00
|
|
|
def podman_login(registry, username, passwd) {
|
2021-07-15 08:29:27 +00:00
|
|
|
ssh "podman login --authfile=~/.podman-auth.json --username='${username}' --password='${passwd}' ${registry}"
|
2020-11-18 07:36:03 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 17:18:15 +00:00
|
|
|
def create_duffy_config() {
|
|
|
|
writeFile(
|
|
|
|
file: '/home/jenkins/.config/duffy',
|
|
|
|
text: """client:
|
|
|
|
| url: https://duffy.ci.centos.org/api/v1
|
|
|
|
| auth:
|
|
|
|
| name: ceph-csi
|
|
|
|
| key: ${env.CICO_API_KEY}
|
|
|
|
|""".stripMargin()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-11-26 16:04:01 +00:00
|
|
|
// podman_pull pulls image from the source (CI internal) registry, and tags it
|
|
|
|
// as unqualified image name and into the destination registry. This prevents
|
|
|
|
// pulling from the destination registry.
|
|
|
|
//
|
|
|
|
// Images need to be pre-pushed into the source registry, though.
|
|
|
|
def podman_pull(source, destination, image) {
|
|
|
|
ssh "podman pull --authfile=~/.podman-auth.json ${source}/${image} && podman tag ${source}/${image} ${image} ${destination}/${image}"
|
2020-11-18 07:36:03 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 11:47:42 +00:00
|
|
|
node('cico-workspace') {
|
|
|
|
|
|
|
|
stage('checkout ci repository') {
|
|
|
|
git url: "${ci_git_repo}",
|
|
|
|
branch: "${ci_git_branch}",
|
|
|
|
changelog: false
|
|
|
|
}
|
|
|
|
|
2020-08-12 10:08:40 +00:00
|
|
|
stage('checkout PR') {
|
|
|
|
if (params.ghprbPullId != null) {
|
2020-10-26 07:02:26 +00:00
|
|
|
ref = "pull/${ghprbPullId}/merge"
|
2020-08-12 10:08:40 +00:00
|
|
|
}
|
|
|
|
if (params.ghprbTargetBranch != null) {
|
|
|
|
git_since = "${ghprbTargetBranch}"
|
|
|
|
}
|
|
|
|
|
|
|
|
sh "git clone --depth=1 --branch='${git_since}' '${git_repo}' ~/build/ceph-csi"
|
2021-04-07 16:09:56 +00:00
|
|
|
if (ref != git_since) {
|
|
|
|
sh "cd ~/build/ceph-csi && git fetch origin ${ref} && git checkout -b ${ref} FETCH_HEAD"
|
|
|
|
}
|
2020-08-12 10:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('check doc-only change') {
|
|
|
|
doc_change = sh(
|
|
|
|
script: "cd ~/build/ceph-csi && \${OLDPWD}/scripts/skip-doc-change.sh origin/${git_since}",
|
|
|
|
returnStatus: true)
|
|
|
|
}
|
|
|
|
// if doc_change (return value of skip-doc-change.sh is 1, do not run the other stages
|
2021-04-09 09:29:28 +00:00
|
|
|
if (doc_change == 1 && ref != git_since) {
|
2020-08-12 10:08:40 +00:00
|
|
|
currentBuild.result = 'SUCCESS'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-15 11:47:42 +00:00
|
|
|
stage('reserve bare-metal machine') {
|
2022-12-08 17:18:15 +00:00
|
|
|
create_duffy_config()
|
|
|
|
|
2020-05-18 13:14:07 +00:00
|
|
|
def firstAttempt = true
|
|
|
|
retry(30) {
|
|
|
|
if (!firstAttempt) {
|
|
|
|
sleep(time: 5, unit: "MINUTES")
|
|
|
|
}
|
|
|
|
firstAttempt = false
|
2022-12-08 17:18:15 +00:00
|
|
|
def cmd = sh(
|
|
|
|
script: "duffy client request-session pool=${duffy_pool},quantity=1",
|
2020-05-18 13:14:07 +00:00
|
|
|
returnStdout: true
|
2022-12-08 17:18:15 +00:00
|
|
|
)
|
|
|
|
def duffy = new groovy.json.JsonSlurper().parseText(cmd)
|
|
|
|
env.CICO_NODE = "${duffy.session.nodes[0].hostname}"
|
|
|
|
env.CICO_SSID = "${duffy.session.id}"
|
2020-05-18 13:14:07 +00:00
|
|
|
}
|
2020-05-15 11:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
stage('prepare bare-metal machine') {
|
2020-11-26 16:04:01 +00:00
|
|
|
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh root@${CICO_NODE}:'
|
2020-08-12 10:08:40 +00:00
|
|
|
// TODO: already checked out the PR on the node, scp the contents?
|
2020-10-30 16:29:28 +00:00
|
|
|
ssh "./prepare.sh --workdir=${workdir} --gitrepo=${git_repo} --ref=${ref}"
|
2020-05-15 11:47:42 +00:00
|
|
|
}
|
2020-10-30 14:48:16 +00:00
|
|
|
|
|
|
|
// run two jobs in parallel, one for the test container, and
|
|
|
|
// one for the devel container
|
|
|
|
//
|
|
|
|
// - check if the PR modifies the container image files
|
|
|
|
// - pull the container image from the repository of no
|
|
|
|
// modifications are detected
|
|
|
|
stage('pull container images') {
|
2020-11-02 16:08:09 +00:00
|
|
|
def rebuild_test_container = sh(
|
2020-10-30 14:48:16 +00:00
|
|
|
script: "cd ~/build/ceph-csi && \${OLDPWD}/scripts/container-needs-rebuild.sh test origin/${git_since}",
|
|
|
|
returnStatus: true)
|
|
|
|
|
2020-11-02 16:08:09 +00:00
|
|
|
def rebuild_devel_container = sh(
|
2020-10-30 14:48:16 +00:00
|
|
|
script: "cd ~/build/ceph-csi && \${OLDPWD}/scripts/container-needs-rebuild.sh devel origin/${git_since}",
|
|
|
|
returnStatus: true)
|
|
|
|
|
2020-11-18 07:36:03 +00:00
|
|
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
2021-07-14 13:24:01 +00:00
|
|
|
podman_login(ci_registry, '$CREDS_USER', '$CREDS_PASSWD')
|
2020-11-18 07:36:03 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 14:48:16 +00:00
|
|
|
parallel test: {
|
|
|
|
node('cico-workspace') {
|
|
|
|
if (rebuild_test_container == 10) {
|
|
|
|
// container needs rebuild, don't pull
|
2020-11-02 16:08:09 +00:00
|
|
|
use_test_image = 'USE_PULLED_IMAGE=no'
|
2021-03-02 13:52:07 +00:00
|
|
|
// build the test image
|
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make CONTAINER_CMD=podman ENV_CSI_IMAGE_NAME=${ci_registry}/${cached_image} .test-container-id"
|
2020-10-30 14:48:16 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-26 16:04:01 +00:00
|
|
|
podman_pull(ci_registry, ci_registry, "${cached_image}:test")
|
2020-10-30 14:48:16 +00:00
|
|
|
}
|
|
|
|
},
|
2020-10-30 16:29:28 +00:00
|
|
|
devel: {
|
2020-10-30 14:48:16 +00:00
|
|
|
node('cico-workspace') {
|
|
|
|
if (rebuild_devel_container == 10) {
|
|
|
|
// container needs rebuild, don't pull
|
2020-11-02 16:08:09 +00:00
|
|
|
use_build_image = 'USE_PULLED_IMAGE=no'
|
2021-03-02 13:52:07 +00:00
|
|
|
// build the devel image
|
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make CONTAINER_CMD=podman ENV_CSI_IMAGE_NAME=${ci_registry}/${cached_image} .devel-container-id"
|
2020-10-30 14:48:16 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-26 16:04:01 +00:00
|
|
|
podman_pull(ci_registry, ci_registry, "${cached_image}:devel")
|
2020-11-18 07:36:03 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
ceph: {
|
|
|
|
node('cico-workspace') {
|
|
|
|
def base_image = sh(
|
|
|
|
script: 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} \'source /opt/build/go/src/github.com/ceph/ceph-csi/build.env && echo ${BASE_IMAGE}\'',
|
|
|
|
returnStdout: true
|
|
|
|
).trim()
|
2022-03-30 05:27:56 +00:00
|
|
|
def q_io_regex = ~"^quay.io/"
|
2020-11-18 07:36:03 +00:00
|
|
|
|
2022-03-30 05:27:56 +00:00
|
|
|
// base_image is like ceph/ceph:v15 or quay.io/ceph/ceph:v15, strip "quay.io/"
|
|
|
|
podman_pull(ci_registry, "quay.io", "${base_image}" - q_io_regex)
|
2020-10-30 14:48:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-18 10:14:09 +00:00
|
|
|
stage('test & build') {
|
|
|
|
parallel test: {
|
|
|
|
node ('cico-workspace') {
|
2020-11-26 16:04:01 +00:00
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-test CONTAINER_CMD=podman ENV_CSI_IMAGE_NAME=${ci_registry}/${cached_image} ${use_test_image}"
|
2020-05-18 10:14:09 +00:00
|
|
|
}
|
|
|
|
},
|
2020-11-03 07:22:43 +00:00
|
|
|
verify: {
|
|
|
|
node ('cico-workspace') {
|
2020-11-26 16:04:01 +00:00
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-test TARGET=mod-check CONTAINER_CMD=podman ENV_CSI_IMAGE_NAME=${ci_registry}/${cached_image} ${use_test_image}"
|
2020-11-03 07:22:43 +00:00
|
|
|
}
|
|
|
|
},
|
2020-05-25 14:00:03 +00:00
|
|
|
build: {
|
2020-05-18 10:14:09 +00:00
|
|
|
node('cico-workspace') {
|
2020-11-26 16:04:01 +00:00
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-build CONTAINER_CMD=podman ENV_CSI_IMAGE_NAME=${ci_registry}/${cached_image} ${use_build_image}"
|
2020-05-18 10:14:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-15 11:47:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
finally {
|
|
|
|
stage('return bare-metal machine') {
|
2022-12-08 17:18:15 +00:00
|
|
|
sh 'duffy client retire-session ${CICO_SSID}'
|
2020-05-15 11:47:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|