blob: b3586a872e142d14b6a27f65f22887612989e465 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/bash
#
set -euo pipefail
case "$RUN_ACTIVITY" in
run-db-unit-tests-*)
DB_ENGINE=`echo $RUN_ACTIVITY | sed "s/run-db-unit-tests-//g"`
./run-db-unit-tests.sh "http://infra.internal.sonarsource.com/jenkins/orch-${DB_ENGINE}.properties"
;;
run-it-released-plugins)
./run-integration-tests.sh "http://infra.internal.sonarsource.com/jenkins/orch-h2.properties" "Plugins"
;;
run-perf-tests)
./run-perf-tests.sh
;;
*)
echo "unknown RUN_ACTIVITY = $RUN_ACTIVITY"
exit 1
;;
esac
|