Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

run-upgrade-tests.sh 564B

1234567891011121314151617181920
  1. #!/bin/bash
  2. # Run upgrade tests. SonarQube must be already built in order to
  3. # make the ZIP file available for tests.
  4. # Arguments:
  5. # 1. the path to Orchestrator properties file. If empty, then default values are used. Example: "file:///Users/me/orchestrator.properties"
  6. #
  7. # Example:
  8. # ./run-upgrade-tests.sh "file:///Users/me/orchestrator-mysql56.properties"
  9. set -euo pipefail
  10. ORCHESTRATOR_CONFIG_URL=$1
  11. shift 1
  12. ./gradlew --no-daemon --console plain \
  13. :tests:integrationTest \
  14. -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
  15. -Dcategory=Upgrade \
  16. $*