ci-scripts: remove unused EXECUTE_ALL env var

pull/780/head
pabloFuente 2023-03-09 12:51:29 +01:00
parent 951be72be9
commit 2f885c7309
1 changed files with 11 additions and 10 deletions

View File

@ -9,7 +9,6 @@ LAUNCH_OV_KURENTO=false
OV_E2E_KURENTO=false OV_E2E_KURENTO=false
LAUNCH_OV_MEDIASOUP=false LAUNCH_OV_MEDIASOUP=false
OV_E2E_MEDIASOUP=false OV_E2E_MEDIASOUP=false
EXECUTE_ALL=false
function environmentLaunch { function environmentLaunch {
local MEDIA_SERVER="$1" local MEDIA_SERVER="$1"
@ -191,18 +190,20 @@ if [[ -n ${1:-} ]]; then
shift 1 shift 1
;; ;;
*) *)
break echo "Unrecognized method $1"
exit 1
;; ;;
esac esac
done done
else else
EXECUTE_ALL=true echo "Must provide a method to execute as first parameter when calling the script"
exit 1
fi fi
# ------------- # -------------
# openvidu-server unit tests # openvidu-server unit tests
# ------------- # -------------
if [[ "${OV_UNIT_TESTS}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${OV_UNIT_TESTS}" == true ]]; then
pushd openvidu-server pushd openvidu-server
mvn -B -Dtest=io.openvidu.server.test.unit.*Test test mvn -B -Dtest=io.openvidu.server.test.unit.*Test test
popd popd
@ -211,7 +212,7 @@ fi
# ------------- # -------------
# openvidu-server integration tests # openvidu-server integration tests
# ------------- # -------------
if [[ "${OV_INTEGRATION_TESTS}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${OV_INTEGRATION_TESTS}" == true ]]; then
pushd openvidu-server pushd openvidu-server
mvn -B -Dtest=io.openvidu.server.test.integration.*Test test mvn -B -Dtest=io.openvidu.server.test.integration.*Test test
popd popd
@ -220,7 +221,7 @@ fi
# ------------- # -------------
# Build openvidu-test-e2e # Build openvidu-test-e2e
# ------------- # -------------
if [[ "${BUILD_OV_TEST_E2E}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${BUILD_OV_TEST_E2E}" == true ]]; then
pushd openvidu-test-browsers pushd openvidu-test-browsers
mvn -B versions:set -DnewVersion=TEST && mvn -B clean install mvn -B versions:set -DnewVersion=TEST && mvn -B clean install
popd popd
@ -234,27 +235,27 @@ fi
# ------------- # -------------
# Environment launch Kurento # Environment launch Kurento
# ------------- # -------------
if [[ "${LAUNCH_OV_KURENTO}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${LAUNCH_OV_KURENTO}" == true ]]; then
environmentLaunch "kurento" environmentLaunch "kurento"
fi fi
# ------------- # -------------
# OpenVidu E2E Tests Kurento # OpenVidu E2E Tests Kurento
# ------------- # -------------
if [[ "${OV_E2E_KURENTO}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${OV_E2E_KURENTO}" == true ]]; then
openviduE2ETests "kurento" openviduE2ETests "kurento"
fi fi
# ------------- # -------------
# Environment launch mediasoup # Environment launch mediasoup
# ------------- # -------------
if [[ "${LAUNCH_OV_MEDIASOUP}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${LAUNCH_OV_MEDIASOUP}" == true ]]; then
environmentLaunch "mediasoup" environmentLaunch "mediasoup"
fi fi
# ------------- # -------------
# OpenVidu E2E Tests mediasoup # OpenVidu E2E Tests mediasoup
# ------------- # -------------
if [[ "${OV_E2E_MEDIASOUP}" == true || "${EXECUTE_ALL}" == true ]]; then if [[ "${OV_E2E_MEDIASOUP}" == true ]]; then
openviduE2ETests "mediasoup" openviduE2ETests "mediasoup"
fi fi