aboutsummaryrefslogtreecommitdiffstats
path: root/run-db-unit-tests.sh
blob: 6a3d7eceb9e50788e3b62aea3ac93c2379a0acfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -euo pipefail

ORCHESTRATOR_CONFIG_URL=$1
shift

./gradlew --no-daemon \
  :server:sonar-db-core:createDB \
  :server:sonar-db-core:test \
  :server:sonar-db-migration:test \
  :server:sonar-db-dao:test \
  -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
  $*