You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run-upgrade-tests.sh 547B

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. cd tests
  13. mvn verify \
  14. -Pwith-db-drivers \
  15. -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
  16. -Dcategory=Upgrade -B -e -V $*