ci-scripts: remove unused OPERA_VERSION env variable

pull/780/head
pabloFuente 2023-03-09 19:02:22 +01:00
parent bdb78db9d5
commit d2380dbfda
2 changed files with 0 additions and 12 deletions

View File

@ -7,7 +7,6 @@ set -eu -o pipefail
################################################################
# CI flags
GITHUB_ACTIONS_ORIGINAL_WORKING_DIR="${PWD}"
GITHUB_ACTIONS_WORKING_DIR="${GITHUB_ACTIONS_WORKING_DIR:-}"
PREPARE_TEST_ENVIRONMENT=false
@ -40,11 +39,6 @@ BUMP_APPLICATION_PROPERTIES_VAR_VALUE=false
WAIT_FOR_NPM_DEPENDENCY=false
# cd to directory if GITHUB_ACTIONS_WORKING_DIR is set
# if [[ -n "${GITHUB_ACTIONS_WORKING_DIR:-}" ]]; then
# cd "${GITHUB_ACTIONS_WORKING_DIR}"
# fi
# Environment variables
if [[ -n ${1:-} ]]; then
case "${1:-}" in
@ -365,10 +359,6 @@ if [[ "${PREPARE_TEST_ENVIRONMENT}" == true ]]; then
if [[ -n "${FIREFOX_VERSION:-}" ]]; then
docker pull selenium/standalone-firefox:"${FIREFOX_VERSION}"
fi
# Pull opera image if env variable OPERA_VERSION is set
if [[ -n "${OPERA_VERSION:-}" ]]; then
docker pull selenium/standalone-opera:"${OPERA_VERSION}"
fi
# Pull edge image if env variable EDGE_VERSION is set
if [[ -n "${EDGE_VERSION:-}" ]]; then
docker pull selenium/standalone-edge:"${EDGE_VERSION}"

View File

@ -109,7 +109,6 @@ function openviduE2ETests {
-DOPENVIDU_URL="https://${E2E_CONTAINER_IP}:4443" \
-DCHROME_VERSION="${CHROME_VERSION}" \
-DFIREFOX_VERSION="${FIREFOX_VERSION}" \
-DOPERA_VERSION="${OPERA_VERSION}" \
-DEDGE_VERSION="${EDGE_VERSION}" \
-Dtest=OpenViduTestAppE2eTest \
-DAPP_URL="https://${E2E_CONTAINER_IP}:4200" \
@ -127,7 +126,6 @@ function openviduE2ETests {
-DOPENVIDU_URL="https://${E2E_CONTAINER_IP}:4443" \
-DCHROME_VERSION="${CHROME_VERSION}" \
-DFIREFOX_VERSION="${FIREFOX_VERSION}" \
-DOPERA_VERSION="${OPERA_VERSION}" \
-DEDGE_VERSION="${EDGE_VERSION}" \
-Dtest=OpenViduTestAppE2eTest \
-DAPP_URL="https://${E2E_CONTAINER_IP}:4200" \