8 lines
283 B
Bash
Executable file
8 lines
283 B
Bash
Executable file
CURRENT_DIRECTORY=`pwd`
|
|
ROOT_DIRECTORY="$( dirname "$(dirname "$CURRENT_DIRECTORY")")"
|
|
|
|
docker run --privileged -v \
|
|
$ROOT_DIRECTORY:/gopkg/src/github.com/hashicorp/nomad \
|
|
-it nomad-e2e /bin/bash \
|
|
-c "cd gopkg/src/github.com/hashicorp/nomad/e2e/migrations && go test -integration"
|