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

ORCHESTRATOR_CONFIG_URL=$1
shift

mvn verify \
  -pl :sonar-db,:sonar-db-migration \
  -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
  -Dwith-db-drivers \
  -B -e -V $*