diff --git a/jenkins/opensearch-dashboards/distribution-build.jenkinsfile b/jenkins/opensearch-dashboards/distribution-build.jenkinsfile index 1f03fd9adb..2be7dd9546 100644 --- a/jenkins/opensearch-dashboards/distribution-build.jenkinsfile +++ b/jenkins/opensearch-dashboards/distribution-build.jenkinsfile @@ -150,27 +150,6 @@ pipeline { echo "buildManifestUrl (x64, rpm): ${buildManifestUrl}" echo "artifactUrl (x64, rpm): ${artifactUrl}" - 'integ-test': { - Boolean skipIntegTests = INTEG_TEST_JOB_NAME == '' - echo "${skipIntegTests ? 'Skipping integration tests' : 'Running integration tests'}" - if (!skipIntegTests) { - def integTestResults = - build job: INTEG_TEST_JOB_NAME, - propagate: false, - wait: true, - parameters: [ - string(name: 'TEST_MANIFEST', value: TEST_MANIFEST), - string(name: 'BUILD_MANIFEST_URL', value: buildManifestUrl), - string(name: 'AGENT_LABEL', value: AGENT_X64) - ] - - env.ARTIFACT_URL_X64_RPM_INTEG_TEST_RESULT = createTestResultsMessage( - testType: "Integ Tests (x64, rpm)", - status: integTestResults.getResult(), - absoluteUrl: integTestResults.getAbsoluteUrl() - ) - } - } } } post { @@ -332,27 +311,6 @@ pipeline { echo "buildManifestUrl (arm64, rpm): ${buildManifestUrl}" echo "artifactUrl (arm64, rpm): ${artifactUrl}" - 'integ-test': { - Boolean skipIntegTests = INTEG_TEST_JOB_NAME == '' - echo "${skipIntegTests ? 'Skipping integration tests' : 'Running integration tests'}" - if (!skipIntegTests) { - def integTestResults = - build job: INTEG_TEST_JOB_NAME, - propagate: false, - wait: true, - parameters: [ - string(name: 'TEST_MANIFEST', value: TEST_MANIFEST), - string(name: 'BUILD_MANIFEST_URL', value: buildManifestUrl), - string(name: 'AGENT_LABEL', value: AGENT_ARM64) - ] - - env.ARTIFACT_URL_ARM64_RPM_INTEG_TEST_RESULT = createTestResultsMessage( - testType: "Integ Tests (arm64, rpm)", - status: integTestResults.getResult(), - absoluteUrl: integTestResults.getAbsoluteUrl() - ) - } - } } } post { diff --git a/jenkins/opensearch/distribution-build.jenkinsfile b/jenkins/opensearch/distribution-build.jenkinsfile index 6eeb8aa229..c0254d0967 100644 --- a/jenkins/opensearch/distribution-build.jenkinsfile +++ b/jenkins/opensearch/distribution-build.jenkinsfile @@ -214,27 +214,6 @@ pipeline { echo "buildManifestUrl (x64, rpm): ${buildManifestUrl}" echo "artifactUrl (x64, rpm): ${artifactUrl}" - 'integ-test': { - Boolean skipIntegTests = INTEG_TEST_JOB_NAME == '' - echo "${skipIntegTests ? 'Skipping integration tests' : 'Running integration tests'}" - if (!skipIntegTests) { - def integTestResults = - build job: INTEG_TEST_JOB_NAME, - propagate: false, - wait: true, - parameters: [ - string(name: 'TEST_MANIFEST', value: TEST_MANIFEST), - string(name: 'BUILD_MANIFEST_URL', value: buildManifestUrl), - string(name: 'AGENT_LABEL', value: AGENT_X64) - ] - - env.ARTIFACT_URL_X64_RPM_INTEG_TEST_RESULT = createTestResultsMessage( - testType: "Integ Tests (x64, rpm)", - status: integTestResults.getResult(), - absoluteUrl: integTestResults.getAbsoluteUrl() - ) - } - } } } post { @@ -334,27 +313,6 @@ pipeline { echo "buildManifestUrl (arm64, rpm): ${buildManifestUrl}" echo "artifactUrl (arm64, rpm): ${artifactUrl}" - 'integ-test': { - Boolean skipIntegTests = INTEG_TEST_JOB_NAME == '' - echo "${skipIntegTests ? 'Skipping integration tests' : 'Running integration tests'}" - if (!skipIntegTests) { - def integTestResults = - build job: INTEG_TEST_JOB_NAME, - propagate: false, - wait: true, - parameters: [ - string(name: 'TEST_MANIFEST', value: TEST_MANIFEST), - string(name: 'BUILD_MANIFEST_URL', value: buildManifestUrl), - string(name: 'AGENT_LABEL', value: AGENT_ARM64) - ] - - env.ARTIFACT_URL_ARM64_RPM_INTEG_TEST_RESULT = createTestResultsMessage( - testType: "Integ Tests (arm64, rpm)", - status: integTestResults.getResult(), - absoluteUrl: integTestResults.getAbsoluteUrl() - ) - } - } } } post {