diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2018-07-02 09:57:31 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-07-09 10:39:32 +0200 |
commit | 8c7686ec1e25d01f9b5a07077b01a27ecfe67f12 (patch) | |
tree | cf7e6846efbd869ba29e6566e5d2d93ee9b1f1f9 /run-upgrade-tests.sh | |
parent | b6db84fc5567c190f2df589c4dbca59852200e05 (diff) | |
download | sonarqube-8c7686ec1e25d01f9b5a07077b01a27ecfe67f12.tar.gz sonarqube-8c7686ec1e25d01f9b5a07077b01a27ecfe67f12.zip |
move core integration test documentation to private
Diffstat (limited to 'run-upgrade-tests.sh')
-rwxr-xr-x | run-upgrade-tests.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/run-upgrade-tests.sh b/run-upgrade-tests.sh deleted file mode 100755 index a4c5d5961bc..00000000000 --- a/run-upgrade-tests.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -# Run upgrade tests. SonarQube must be already built in order to -# make the ZIP file available for tests. - -# Arguments: -# 1. the path to Orchestrator properties file. If empty, then default values are used. Example: "file:///Users/me/orchestrator.properties" -# -# Example: -# ./run-upgrade-tests.sh "file:///Users/me/orchestrator-mysql56.properties" - -set -euo pipefail - -ORCHESTRATOR_CONFIG_URL=$1 -shift 1 - -./gradlew --no-daemon --console plain \ - :tests:integrationTest \ - -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \ - -Dcategory=Upgrade \ - $* |