From c6874b6fe6068e00782770a5c0b681a6d376794e Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 25 May 2020 16:21:02 +0200 Subject: [PATCH] cleanup: remove unused make-containerized-build job This job has been replaced by containerized-tests. Signed-off-by: Niels de Vos --- make-containerized-build.groovy | 43 --------------------------------- make-containerized-build.yaml | 28 --------------------- 2 files changed, 71 deletions(-) delete mode 100644 make-containerized-build.groovy delete mode 100644 make-containerized-build.yaml diff --git a/make-containerized-build.groovy b/make-containerized-build.groovy deleted file mode 100644 index 8f452c85f..000000000 --- a/make-containerized-build.groovy +++ /dev/null @@ -1,43 +0,0 @@ -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 = "master" - -node('cico-workspace') { - - stage('checkout ci repository') { - git url: "${ci_git_repo}", - branch: "${ci_git_branch}", - changelog: false - } - - stage('reserve bare-metal machine') { - 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') { - if ("${ghprbPullId}".length() != 0) { - ref = "pull/${ghprbPullId}/head" - } - sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh root@${CICO_NODE}:' - 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}" - } - - stage('build') { - sh 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} "cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-build CONTAINER_CMD=podman"' - } - } - - finally { - stage('return bare-metal machine') { - sh 'cico node done ${CICO_SSID}' - } - } -} diff --git a/make-containerized-build.yaml b/make-containerized-build.yaml deleted file mode 100644 index 2e32df732..000000000 --- a/make-containerized-build.yaml +++ /dev/null @@ -1,28 +0,0 @@ ---- -- job: - name: make-containerized-build - project-type: pipeline - sandbox: true - pipeline-scm: - scm: - - git: - url: https://github.com/ceph/ceph-csi - branches: - - ci/centos - script-path: make-containerized-build.groovy - lightweight-checkout: true - parameters: - - string: - name: ghprbPullId - default: '' - triggers: - - github-pull-request: - cron: 'H/5 * * * *' - admin-list: - - nixpanic - org-list: - - ceph - wrappers: - - timestamps - - ansicolor: - colormap: xterm