sonarqube/cix.sh
Patrice Clement cc95453e80 Remove extraneous echo calls and rely on bash here strings instead.
Signed-off-by: Sébastien Lesaint <sebastien.lesaint@sonarsource.com>
2016-08-18 10:01:25 +02:00

46 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
# QA pipeline
set -euo pipefail
case "$RUN_ACTIVITY" in
run-db-unit-tests-*)
DB_ENGINE=$(sed "s/run-db-unit-tests-//g" <<< $RUN_ACTIVITY)
./run-db-unit-tests.sh "http://infra.internal.sonarsource.com/jenkins/orch-${DB_ENGINE}.properties"
;;
run-db-integration-tests-*)
DB_ENGINE=$(sed "s/run-db-integration-tests-//g" <<< $RUN_ACTIVITY | cut -d \- -f 1)
CATEGORY=$(sed "s/run-db-integration-tests-//g" <<< $RUN_ACTIVITY | cut -d \- -f 2)
./run-integration-tests.sh "${CATEGORY}" "http://infra.internal.sonarsource.com/jenkins/orch-${DB_ENGINE}.properties"
;;
run-integration-tests-*)
CATEGORY=$(sed "s/run-integration-tests-//g" <<< $RUN_ACTIVITY)
./run-integration-tests.sh "${CATEGORY}" "http://infra.internal.sonarsource.com/jenkins/orch-embedded.properties"
;;
run-it-released-plugins)
./run-integration-tests.sh "Plugins" "http://infra.internal.sonarsource.com/jenkins/orch-h2.properties"
;;
run-perf-tests)
./run-perf-tests.sh
;;
run-upgrade-tests-*)
DB_ENGINE=$(sed "s/run-upgrade-tests-//g" <<< $RUN_ACTIVITY)
./run-upgrade-tests.sh "http://infra.internal.sonarsource.com/jenkins/orch-${DB_ENGINE}.properties"
;;
*)
echo "unknown RUN_ACTIVITY = $RUN_ACTIVITY"
exit 1
;;
esac