2020-05-26 15:52:51 +00:00
|
|
|
def cico_retries = 16
|
|
|
|
def cico_retry_interval = 60
|
|
|
|
def ci_git_repo = 'https://github.com/ceph/ceph-csi'
|
|
|
|
def ci_git_branch = 'ci/centos'
|
2020-08-13 13:21:34 +00:00
|
|
|
def git_repo = 'https://github.com/ceph/ceph-csi'
|
2020-05-26 15:52:51 +00:00
|
|
|
def ref = 'ci/centos'
|
2020-08-12 13:17:28 +00:00
|
|
|
def git_since = 'ci/centos'
|
2020-05-27 07:35:07 +00:00
|
|
|
def base = ''
|
2020-08-12 13:17:28 +00:00
|
|
|
def doc_change = 0
|
2020-10-30 12:04:47 +00:00
|
|
|
// private, internal container image repository
|
|
|
|
def cached_image = 'registry-ceph-csi.apps.ocp.ci.centos.org/ceph-csi'
|
2020-11-02 16:08:09 +00:00
|
|
|
def use_pulled_image = 'USE_PULLED_IMAGE=yes'
|
2020-05-26 15:52:51 +00:00
|
|
|
|
|
|
|
node('cico-workspace') {
|
|
|
|
stage('checkout ci repository') {
|
2020-05-27 07:59:42 +00:00
|
|
|
if (params.ghprbPullId != null) {
|
2020-10-26 07:02:26 +00:00
|
|
|
ref = "pull/${ghprbPullId}/merge"
|
2020-05-27 07:59:42 +00:00
|
|
|
}
|
|
|
|
checkout([$class: 'GitSCM', branches: [[name: 'FETCH_HEAD']],
|
|
|
|
userRemoteConfigs: [[url: "${ci_git_repo}", refspec: "${ref}"]]])
|
2020-05-26 15:52:51 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 13:17:28 +00:00
|
|
|
stage('checkout PR') {
|
|
|
|
if (params.ghprbPullId != null) {
|
2020-10-26 07:02:26 +00:00
|
|
|
ref = "pull/${ghprbPullId}/merge"
|
2020-08-12 13:17:28 +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 13:17:28 +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 13:17:28 +00:00
|
|
|
currentBuild.result = 'SUCCESS'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-26 15:52:51 +00:00
|
|
|
stage('reserve bare-metal machine') {
|
|
|
|
def firstAttempt = true
|
|
|
|
retry(30) {
|
|
|
|
if (!firstAttempt) {
|
|
|
|
sleep(time: 5, unit: "MINUTES")
|
|
|
|
}
|
|
|
|
firstAttempt = false
|
|
|
|
cico = sh(
|
2020-07-31 14:31:57 +00:00
|
|
|
script: "cico node get -f value -c hostname -c comment --release=8 --retry-count=${cico_retries} --retry-interval=${cico_retry_interval}",
|
2020-05-26 15:52:51 +00:00
|
|
|
returnStdout: true
|
|
|
|
).trim().tokenize(' ')
|
|
|
|
env.CICO_NODE = "${cico[0]}.ci.centos.org"
|
|
|
|
env.CICO_SSID = "${cico[1]}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
stage('prepare bare-metal machine') {
|
2020-05-27 07:35:07 +00:00
|
|
|
if (params.ghprbTargetBranch != null) {
|
|
|
|
base = "--base=${ghprbTargetBranch}"
|
|
|
|
}
|
2020-05-26 15:52:51 +00:00
|
|
|
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh root@${CICO_NODE}:'
|
2020-05-27 07:35:07 +00:00
|
|
|
sh "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} ./prepare.sh --workdir=/opt/build/go/src/github.com/ceph/ceph-csi --gitrepo=${ci_git_repo} --ref=${ref} ${base}"
|
2020-05-26 15:52:51 +00:00
|
|
|
}
|
2020-10-30 12:04:47 +00:00
|
|
|
|
|
|
|
// - check if the PR modifies the container image files
|
|
|
|
// - pull the container image from the repository of no
|
|
|
|
// modifications are detected
|
|
|
|
stage('pull container image') {
|
|
|
|
def rebuild_container = sh(
|
|
|
|
script: "cd ~/build/ceph-csi && \${OLDPWD}/scripts/container-needs-rebuild.sh test origin/${git_since}",
|
|
|
|
returnStatus: true)
|
|
|
|
if (rebuild_container == 10) {
|
|
|
|
// container needs rebuild, don't pull
|
2020-11-02 16:08:09 +00:00
|
|
|
use_pulled_image = 'USE_PULLED_IMAGE=no'
|
2020-10-30 12:04:47 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
|
|
|
sh "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} 'podman pull --creds=${CREDS_USER}:${CREDS_PASSWD} ${cached_image}:test'"
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 15:52:51 +00:00
|
|
|
stage('test') {
|
2020-11-02 16:08:09 +00:00
|
|
|
sh "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} 'cd /opt/build/go/src/github.com/ceph/ceph-csi && make ENV_CSI_IMAGE_NAME=${cached_image} ${use_pulled_image}'"
|
2020-05-26 15:52:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
finally {
|
|
|
|
stage('return bare-metal machine') {
|
|
|
|
sh 'cico node done ${CICO_SSID}'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|