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

ORCHESTRATOR_CONFIG_URL=$1
CATEGORY=$2
shift 2

cd it
mvn verify \
  -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
  -Dwith-db-drivers \
  -Dcategory=$CATEGORY \
  -Dsource.skip=true -B -e -V $*