From: Simon Brandhof Date: Wed, 17 Feb 2016 09:42:55 +0000 (+0100) Subject: Add QA job "run-db-integration-tests-oracle12c-Category1" X-Git-Tag: 5.5-M2~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9194c3363d91e37af5a4ab08d06e0e1e52194a6d;p=sonarqube.git Add QA job "run-db-integration-tests-oracle12c-Category1" --- diff --git a/.cix.yml b/.cix.yml index d6df6065a51..06cc3080d4f 100644 --- a/.cix.yml +++ b/.cix.yml @@ -10,6 +10,7 @@ RUN_ACTIVITY: - run-db-unit-tests-oracle11g - run-db-unit-tests-oracle12c - run-db-unit-tests-postgresql93 + - run-db-integration-tests-oracle12c-Category1 - run-it-released-plugins - run-perf-tests @@ -26,6 +27,8 @@ exclude: SLAVE_TYPE: performance - RUN_ACTIVITY: run-db-unit-tests-postgresql93 SLAVE_TYPE: performance + - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category1 + SLAVE_TYPE: performance - RUN_ACTIVITY: run-it-released-plugins SLAVE_TYPE: performance - RUN_ACTIVITY: run-perf-tests diff --git a/cix.sh b/cix.sh index dca3ef0ec90..23d5f5a0c88 100755 --- a/cix.sh +++ b/cix.sh @@ -11,6 +11,13 @@ case "$RUN_ACTIVITY" in ./run-db-unit-tests.sh "http://infra.internal.sonarsource.com/jenkins/orch-${DB_ENGINE}.properties" ;; + run-db-integration-tests-*) + DB_ENGINE=`echo $RUN_ACTIVITY | sed "s/run-db-integration-tests-//g" | cut -d \- -f 1` + CATEGORY=`echo $RUN_ACTIVITY | sed "s/run-db-integration-tests-//g" | cut -d \- -f 2` + + ./run-integration-tests.sh "${CATEGORY}" "http://infra.internal.sonarsource.com/jenkins/orch-${DB_ENGINE}.properties" + ;; + run-it-released-plugins) ./run-integration-tests.sh "Plugins" "http://infra.internal.sonarsource.com/jenkins/orch-h2.properties" ;;