aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-06-06 09:39:54 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-06-06 09:41:01 +0200
commit50c0a193b504d2eef6c57cabe4747ba11ded8657 (patch)
tree7f35fa0731777caaec284440e77b93c30d3f41ff
parent52d12e46345e831fb61e8b98395ee966e4788b41 (diff)
downloadsonarqube-50c0a193b504d2eef6c57cabe4747ba11ded8657.tar.gz
sonarqube-50c0a193b504d2eef6c57cabe4747ba11ded8657.zip
Add minor comments to build files
-rw-r--r--.cix.yml6
-rw-r--r--.sonarsource.properties6
-rwxr-xr-xcix.sh8
3 files changed, 7 insertions, 13 deletions
diff --git a/.cix.yml b/.cix.yml
index d77afcc2db5..71c8e86530a 100644
--- a/.cix.yml
+++ b/.cix.yml
@@ -1,7 +1,5 @@
-# Definition of QA pipeline at SonarSource
-#
-# Possible values for SLAVE_TYPE: "performance" (for perf tests) and "gva" (for linux machines connected to DB services)
-
+# QA pipeline at SonarSource
+# Based on https://wiki.jenkins-ci.org/display/JENKINS/Yaml+Axis+Plugin
RUN_ACTIVITY:
- run-db-unit-tests-mysql56
diff --git a/.sonarsource.properties b/.sonarsource.properties
index 158b8901ddc..1906dcbb7a1 100644
--- a/.sonarsource.properties
+++ b/.sonarsource.properties
@@ -1,6 +1,2 @@
-# Sonarsource meta data file for this project
-
-# Wallboard
-# teamAtSonarSource drives in which wallboard the alerting will be sent
-# platform , language, infra
+# Name of wallboard used in SonarSource offices
wallboard.teamAtSonarSource=platform
diff --git a/cix.sh b/cix.sh
index 2b0b78c5e53..466e91126da 100755
--- a/cix.sh
+++ b/cix.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-#
+# QA pipeline
set -euo pipefail
@@ -19,10 +19,10 @@ case "$RUN_ACTIVITY" in
;;
run-integration-tests-*)
- CATEGORY=$(echo $RUN_ACTIVITY | sed "s/run-integration-tests-//g")
+ CATEGORY=$(echo $RUN_ACTIVITY | sed "s/run-integration-tests-//g")
- ./run-integration-tests.sh "${CATEGORY}" "http://infra.internal.sonarsource.com/jenkins/orch-embedded.properties"
- ;;
+ ./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"