From 23f81e73a6299679fcd0a916a94a40d8490d7ed0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Waldemar=20=C5=BBurowski?=
 <45210402+wzur-r3@users.noreply.github.com>
Date: Fri, 19 Jun 2020 19:30:11 +0100
Subject: [PATCH] Remove obsolete Jenkins configration for smoke tests (#6379)

---
 .ci/dev/smoke/Jenkinsfile | 101 --------------------------------------
 1 file changed, 101 deletions(-)
 delete mode 100644 .ci/dev/smoke/Jenkinsfile

diff --git a/.ci/dev/smoke/Jenkinsfile b/.ci/dev/smoke/Jenkinsfile
deleted file mode 100644
index 3ddc3cdce8..0000000000
--- a/.ci/dev/smoke/Jenkinsfile
+++ /dev/null
@@ -1,101 +0,0 @@
-@Library('corda-shared-build-pipeline-steps')
-import static com.r3.build.BuildControl.killAllExistingBuildsForJob
-
-killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
-
-pipeline {
-    agent { label 'k8s' }
-    options {
-        timestamps()
-        overrideIndexTriggers(false)
-        timeout(time: 3, unit: 'HOURS')
-    }
-
-    triggers {
-        issueCommentTrigger('.*smoke tests.*')
-    }
-
-    environment {
-        EXECUTOR_NUMBER = "${env.EXECUTOR_NUMBER}"
-    }
-
-    stages {
-        stage('Corda Smoke Tests') {
-            steps {
-                script {
-                    if (currentBuildTriggeredByComment()) {
-                        stage('Run Smoke Tests') {
-                            script {
-                                pullRequest.createStatus(status: 'pending',
-                                        context: 'continuous-integration/jenkins/pr-merge/smokeTest',
-                                        description: 'Smoke Tests Running',
-                                        targetUrl: "${env.JOB_URL}")
-                            }
-
-                            withCredentials([string(credentialsId: 'container_reg_passwd', variable: 'DOCKER_PUSH_PWD')]) {
-                                sh "./gradlew " +
-                                        "-Dkubenetize=true " +
-                                        "-Ddocker.push.password=\"\${DOCKER_PUSH_PWD}\" " +
-                                        "-Ddocker.work.dir=\"/tmp/\${EXECUTOR_NUMBER}\" " +
-                                        " clean allParallelSmokeTest --stacktrace"
-                            }
-                        }
-
-                    }
-                }
-            }
-        }
-    }
-
-    post {
-        always {
-            script {
-                if (currentBuildTriggeredByComment()) {
-                    archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
-                    junit '**/build/test-results-xml/**/*.xml'
-                }
-            }
-        }
-
-
-        success {
-            script {
-                if (currentBuildTriggeredByComment()) {
-                    pullRequest.createStatus(status: 'success',
-                            context: 'continuous-integration/jenkins/pr-merge/smokeTest',
-                            description: 'Smoke Tests Passed',
-                            targetUrl: "${env.BUILD_URL}testResults")
-                }
-            }
-        }
-
-        failure {
-            script {
-                if (currentBuildTriggeredByComment()) {
-                    pullRequest.createStatus(status: 'failure',
-                            context: 'continuous-integration/jenkins/pr-merge/smokeTest',
-                            description: 'Smoke Tests Failed',
-                            targetUrl: "${env.BUILD_URL}testResults")
-                }
-            }
-        }
-
-        cleanup {
-            deleteDir() /* clean up our workspace */
-        }
-    }
-}
-
-@NonCPS
-def currentBuildTriggeredByComment() {
-    def triggerCause = currentBuild.rawBuild.getCause(org.jenkinsci.plugins.pipeline.github.trigger.IssueCommentCause)
-    if (triggerCause) {
-        echo("Build was started by ${triggerCause.userLogin}, who wrote: " +
-                "\"${triggerCause.comment}\", which matches the " +
-                "\"${triggerCause.triggerPattern}\" trigger pattern.")
-    } else {
-        echo('Build was not started by a trigger')
-    }
-
-    return triggerCause != null
-}