Remove openvidu-pro-test-e2e Docker container from commonFunctions.groovy script

pull/772/head
pabloFuente 2022-11-29 18:53:15 +01:00
parent 6ef6faca86
commit dadcfc6f77
1 changed files with 0 additions and 6 deletions

View File

@ -36,11 +36,6 @@ def prepareTestingEnvironment() {
docker.image("openvidu/openvidu-test-e2e:${DISTRO}").pull() docker.image("openvidu/openvidu-test-e2e:${DISTRO}").pull()
} }
}, },
'Pull openvidu/openvidu-pro-test-e2e': {
if (env.DISTRO) {
docker.image("openvidu/openvidu-pro-test-e2e:${DISTRO}").pull()
}
},
'Pull selenium/standalone-chrome': { 'Pull selenium/standalone-chrome': {
if (env.CHROME_VERSION) { if (env.CHROME_VERSION) {
docker.image("selenium/standalone-chrome:${CHROME_VERSION}").pull() docker.image("selenium/standalone-chrome:${CHROME_VERSION}").pull()
@ -150,7 +145,6 @@ def removeStrandedContainers(removeTestingContainers) {
"openvidu/speech-to-text-service:") "openvidu/speech-to-text-service:")
if [ "${removeTestingContainers}" == "true" ]; then if [ "${removeTestingContainers}" == "true" ]; then
arr+=("openvidu/openvidu-test-e2e:") arr+=("openvidu/openvidu-test-e2e:")
arr+=("openvidu/openvidu-pro-test-e2e:")
fi fi
for image in "${arr[@]}" for image in "${arr[@]}"
do do