2020-08-07 12:33:29 +00:00
|
|
|
def cico_retries = 16
|
|
|
|
def cico_retry_interval = 60
|
2024-05-29 14:41:46 +00:00
|
|
|
def duffy_pool = 'virt-ec2-t2-centos-9s-x86_64'
|
2020-08-07 12:33:29 +00:00
|
|
|
def ci_git_repo = 'https://github.com/ceph/ceph-csi'
|
|
|
|
def ci_git_branch = 'ci/centos'
|
2021-02-25 08:23:57 +00:00
|
|
|
def ref = "devel"
|
|
|
|
def git_since = 'origin/devel'
|
2020-08-07 12:33:29 +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-08-07 12:33:29 +00:00
|
|
|
node('cico-workspace') {
|
|
|
|
stage('checkout ci repository') {
|
|
|
|
git url: "${ci_git_repo}",
|
|
|
|
branch: "${ci_git_branch}",
|
|
|
|
changelog: false
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('reserve bare-metal machine') {
|
2022-12-08 17:18:15 +00:00
|
|
|
create_duffy_config()
|
|
|
|
|
2020-08-07 12:33:29 +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-08-07 12:33:29 +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-08-07 12:33:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
stage('prepare bare-metal machine') {
|
|
|
|
if (params.ghprbPullId != null) {
|
2020-10-21 12:55:50 +00:00
|
|
|
ref = "pull/${ghprbPullId}/merge"
|
2020-08-07 12:33:29 +00:00
|
|
|
}
|
|
|
|
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh root@${CICO_NODE}:'
|
2020-08-18 11:00:12 +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} --history"
|
2020-08-07 12:33:29 +00:00
|
|
|
}
|
|
|
|
|
2020-08-07 12:33:29 +00:00
|
|
|
stage('run commitlint') {
|
2020-08-07 12:33:29 +00:00
|
|
|
if (params.ghprbTargetBranch != null) {
|
|
|
|
git_since = "origin/${ghprbTargetBranch}"
|
|
|
|
}
|
2020-10-21 12:55:50 +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 containerized-test CONTAINER_CMD=podman TARGET=commitlint GIT_SINCE=${git_since}'"
|
2020-08-07 12:33:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
finally {
|
|
|
|
stage('return bare-metal machine') {
|
2022-12-08 17:18:15 +00:00
|
|
|
sh 'duffy client retire-session ${CICO_SSID}'
|
2020-08-07 12:33:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|