Jenkinsfile in uricp-0.0.36 vs Jenkinsfile in uricp-0.0.37

- old
+ new

@@ -38,87 +38,19 @@ subject: "Uricp Tests Failed: ${currentBuild.fullDisplayName}", body: "${env.BUILD_URL}" } } } - stage("CentOS 7") { - agent { - dockerfile { - dir 'centos7' - label "docker" - additionalBuildArgs '--build-arg CEPH_MON --build-arg RBD_USR --build-arg RBD_PSW' - } - } - steps { - sh 'rbd --id "${RBD_USR}" ls servers' - sh 'bundle install --deployment' - sh 'bundle exec rake features:new_qemu' - } - post { - always { - sh 'bundle exec rake features:clean' - } - failure { - mail to: 'sysadmin@brightbox.co.uk', - subject: "Uricp Tests Failed: ${currentBuild.fullDisplayName}", - body: "${env.BUILD_URL}" - } - } - } stage("Focal, Ruby 2.7.0") { agent { dockerfile { dir 'focal' label "docker" additionalBuildArgs '--build-arg CEPH_MON --build-arg RBD_USR --build-arg RBD_PSW' } } steps { sh 'rbd --id "${RBD_USR}" ls servers' - sh 'bundle install --deployment' - sh 'bundle exec rake features:new_qemu' - } - post { - always { - sh 'bundle exec rake features:clean' - } - failure { - mail to: 'sysadmin@brightbox.co.uk', - subject: "Uricp Tests Failed: ${currentBuild.fullDisplayName}", - body: "${env.BUILD_URL}" - } - } - } - stage("Xenial, Ruby 2.3.1") { - agent { - dockerfile { - dir 'xenial' - label "docker" - } - } - steps { - sh 'bundle install --deployment' - sh 'bundle exec rake features:new_qemu' - } - post { - always { - sh 'bundle exec rake features:clean' - } - failure { - mail to: 'sysadmin@brightbox.co.uk', - subject: "Uricp Tests Failed: ${currentBuild.fullDisplayName}", - body: "${env.BUILD_URL}" - } - } - } - stage("Bionic, Ruby 2.5.1") { - agent { - dockerfile { - dir 'bionic' - label "docker" - } - } - steps { sh 'bundle install --deployment' sh 'bundle exec rake features:new_qemu' } post { always {