diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-06-06 09:39:54 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-06-06 09:41:01 +0200 |
commit | 50c0a193b504d2eef6c57cabe4747ba11ded8657 (patch) | |
tree | 7f35fa0731777caaec284440e77b93c30d3f41ff | |
parent | 52d12e46345e831fb61e8b98395ee966e4788b41 (diff) | |
download | sonarqube-50c0a193b504d2eef6c57cabe4747ba11ded8657.tar.gz sonarqube-50c0a193b504d2eef6c57cabe4747ba11ded8657.zip |
Add minor comments to build files
-rw-r--r-- | .cix.yml | 6 | ||||
-rw-r--r-- | .sonarsource.properties | 6 | ||||
-rwxr-xr-x | cix.sh | 8 |
3 files changed, 7 insertions, 13 deletions
@@ -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 @@ -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" |