]> source.dussan.org Git - sonarqube.git/commitdiff
Remove perf tests
authorTom <thomas.verin@sonarsource.com>
Tue, 11 Dec 2018 16:16:46 +0000 (17:16 +0100)
committertomverin <thomas.verin@sonarsource.com>
Thu, 13 Dec 2018 10:46:10 +0000 (11:46 +0100)
.cix.yml
cix.sh
run-perf-tests.sh [deleted file]

index b286fe02c4f61b89e22b098cff93413a64530a4c..0579b5ec129136c9471e0a8ed4b70095272c5060 100644 (file)
--- a/.cix.yml
+++ b/.cix.yml
@@ -37,83 +37,8 @@ RUN_ACTIVITY:
   - run-upgrade-tests-oracle12c
   - run-upgrade-tests-postgresql93
   - run-it-released-plugins
-  - run-perf-tests
-
+  
 exclude:
-  - RUN_ACTIVITY: run-db-unit-tests-mysql56
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-unit-tests-mssql2014
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-unit-tests-mssql2016
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-unit-tests-oracle11g
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-unit-tests-oracle12c
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-unit-tests-postgresql93
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mysql56-Category1
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mysql56-Category2
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mysql56-Category3
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mysql56-Category4
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mysql56-Category5
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mysql56-Category6
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mssql2014-Category1
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mssql2014-Category2
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mssql2014-Category3
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mssql2014-Category4
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mssql2014-Category5
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-mssql2014-Category6
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category1
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category2
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category3
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category4
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category5
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-oracle12c-Category6
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-postgresql93-Category1
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-postgresql93-Category2
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-postgresql93-Category3
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-postgresql93-Category4
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-postgresql93-Category5
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-db-integration-tests-postgresql93-Category6
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-upgrade-tests-mysql56
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-upgrade-tests-mssql2014
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-upgrade-tests-oracle12c
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-upgrade-tests-postgresql93
-    SLAVE_TYPE: performance
-  - RUN_ACTIVITY: run-it-released-plugins
-    SLAVE_TYPE: performance
-
-  - RUN_ACTIVITY: run-perf-tests
-    SLAVE_TYPE: dblinux
-
   - RUN_ACTIVITY: run-db-unit-tests-mysql56
     SLAVE_TYPE: windows
   - RUN_ACTIVITY: run-db-unit-tests-mssql2014
@@ -182,5 +107,4 @@ exclude:
     SLAVE_TYPE: windows
   - RUN_ACTIVITY: run-upgrade-tests-postgresql93
     SLAVE_TYPE: windows
-  - RUN_ACTIVITY: run-perf-tests
-    SLAVE_TYPE: windows
+
diff --git a/cix.sh b/cix.sh
index 02b2e4dd647af188cd63ffb74f3c55999213fb16..d1ff166d8a10cd42a392e50e1c3a5a5075d76518 100755 (executable)
--- a/cix.sh
+++ b/cix.sh
@@ -24,10 +24,6 @@ case "$RUN_ACTIVITY" in
     ./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)
     if [[ "$GITHUB_BRANCH" == "PULLREQUEST-"* ]] && [[ "$DB_ENGINE" != "postgresql93" ]]; then
diff --git a/run-perf-tests.sh b/run-perf-tests.sh
deleted file mode 100755 (executable)
index b194e57..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-set -euo pipefail
-
-echo 'Run performance tests'
-cd tests
-mvn verify -B -e -V -Dcategory=Performance $*