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'
|
|
|
|
def ref = 'ci/centos'
|
2020-05-27 07:35:07 +00:00
|
|
|
def base = ''
|
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) {
|
|
|
|
ref = "pull/${ghprbPullId}/head"
|
|
|
|
}
|
|
|
|
checkout([$class: 'GitSCM', branches: [[name: 'FETCH_HEAD']],
|
|
|
|
userRemoteConfigs: [[url: "${ci_git_repo}", refspec: "${ref}"]]])
|
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(
|
|
|
|
script: "cico node get -f value -c hostname -c comment --retry-count ${cico_retries} --retry-interval ${cico_retry_interval}",
|
|
|
|
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
|
|
|
}
|
|
|
|
stage('test') {
|
|
|
|
sh 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} "cd /opt/build/go/src/github.com/ceph/ceph-csi && make"'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
finally {
|
|
|
|
stage('return bare-metal machine') {
|
|
|
|
sh 'cico node done ${CICO_SSID}'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|