From: garciadeblas Date: Tue, 27 Jan 2026 22:24:34 +0000 (+0100) Subject: Update e2e pipeline to fix entrypointCmd to point to osm script X-Git-Tag: v19.0.0~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=e9727ca5da43d7f5868ff2ca79464beb93485944;p=osm%2Fdevops.git Update e2e pipeline to fix entrypointCmd to point to osm script Change-Id: I7e8f942ff422ecfc34fc1a075f2a1da8876c2719 Signed-off-by: garciadeblas --- diff --git a/jenkins/ci-pipelines/ci_e2e_tests.groovy b/jenkins/ci-pipelines/ci_e2e_tests.groovy index c65891d4..3747a569 100644 --- a/jenkins/ci-pipelines/ci_e2e_tests.groovy +++ b/jenkins/ci-pipelines/ci_e2e_tests.groovy @@ -471,7 +471,7 @@ node('pool') { * def dr = new DockerRunner(this) * stdout = dr.run( * image : "${INTERNAL_DOCKER_REGISTRY}opensourcemano/tests:${tag}", - * entry : "/usr/bin/osm", // optional + * entry : "osm", // optional * envVars : [ "OSM_HOSTNAME=${host}" ], * envFile : myEnv, * mounts : [ @@ -632,7 +632,7 @@ void register_etsi_vim_account( String VIM_MGMT_NET = "osm-ext" String OS_PROJECT_NAME = "osm_jenkins" String OS_AUTH_URL = "http://172.21.247.1:5000/v3" - String entrypointCmd = "/usr/bin/osm" + String entrypointCmd = "osm" def tempdir = sh(returnStdout: true, script: 'mktemp -d').trim() String environmentFile = envfile ?: "${tempdir}/env" @@ -729,7 +729,7 @@ void register_etsi_k8s_cluster( String VIM_TARGET = "osm" String VIM_MGMT_NET = "osm-ext" String K8S_CREDENTIALS = "/root/.kube/config" - String entrypointCmd = "/usr/bin/osm" + String entrypointCmd = "osm" def tempdir = sh(returnStdout: true, script: 'mktemp -d').trim() String environmentFile = envfile ?: "${tempdir}/env"