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-db-unit-tests.sh 288B

12345678910111213
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3. ORCHESTRATOR_CONFIG_URL=$1
  4. shift
  5. ./gradlew --no-daemon \
  6. :server:sonar-db-core:createDB \
  7. :server:sonar-db-core:test \
  8. :server:sonar-db-migration:test \
  9. :server:sonar-db-dao:test \
  10. -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
  11. $*