diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy index 879e2a7af0f..9f37db7351d 100644 --- a/.ci/jenkins/Jenkinsfile.deploy +++ b/.ci/jenkins/Jenkinsfile.deploy @@ -112,10 +112,6 @@ pipeline { if (params.SKIP_TESTS) { mvnCmd.skipTests() // Conflict somehow with Python testing. If `skipTests={anyvalue}` is set, then exec plugin is not executed ... } - if (isRelease()) { - // Use nightly image for testing as the released one does not exist yet ... - mvnCmd.withProperty('data-index-ephemeral.image', getDataIndexEphemeralNightlyImage()) - } util.runWithPythonVirtualEnv(mvnCmd.getFullRunCommand('clean install'), 'swf') } } @@ -331,10 +327,6 @@ String getWorkflowCommonDeploymentPath() { return "${getRepoName()}/quarkus/extensions/kogito-quarkus-workflow-extension-common/kogito-quarkus-workflow-common-deployment" } -String getDataIndexEphemeralNightlyImage() { - return "quay.io/kiegroup/kogito-data-index-ephemeral-nightly:${util.getMajorMinorVersion(getProjectVersion())}" -} - String getDataIndexEphemeralReleaseImage() { return "quay.io/kiegroup/kogito-data-index-ephemeral:${util.getMajorMinorVersion(getProjectVersion())}" }