15 lines
537 B
Bash
Executable File
15 lines
537 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 --run \
|
|
TestJobMigrations -integration"
|
|
|
|
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 --run \
|
|
TestMigrations_WithACLs -integration"
|