]> source.dussan.org Git - sonarqube.git/commitdiff
Add QA job "run-db-integration-tests-oracle12c-Category1"
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 17 Feb 2016 09:42:55 +0000 (10:42 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 17 Feb 2016 09:42:55 +0000 (10:42 +0100)
.cix.yml
cix.sh

index d6df6065a51aa67415a783c567d915449579c1ee..06cc3080d4fd88224ae6c4574c79953f9696dc53 100644 (file)
--- 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 dca3ef0ec905080c50ef153fdb46f830ca884c40..23d5f5a0c889dea7e716f9cfe21c2bc2ce188ef4 100755 (executable)
--- 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"
     ;;