forked from mystiq/dex
Merge pull request #75 from bobbyrullo/docker_is_fun
go-docker: support functional tests
This commit is contained in:
commit
43b0f7a1e1
2 changed files with 7 additions and 2 deletions
|
@ -17,5 +17,10 @@ for VAR in ${DOCKER_ENV//,/ }; do
|
||||||
ENV_STR="$ENV_STR -e $VAR=${!VAR}"
|
ENV_STR="$ENV_STR -e $VAR=${!VAR}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
LINKS_STR=""
|
||||||
|
for VAR in ${DOCKER_LINKS//,/ }; do
|
||||||
|
LINKS_STR="$LINKS_STR --link $VAR"
|
||||||
|
done
|
||||||
|
|
||||||
echo "running with docker, might take a while to pull the image..."
|
echo "running with docker, might take a while to pull the image..."
|
||||||
docker run $ENV_STR --rm --net=host -v `pwd`:/go/src/$REPO -w /go/src/$REPO quay.io/coreos/go-builder:1.3.3 $@
|
docker run $LINKS_STR $ENV_STR --rm -v `pwd`:/go/src/$REPO -w /go/src/$REPO quay.io/coreos/go-builder:1.3.3 $@
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
source ./build
|
source ./build
|
||||||
go test $@ github.com/coreos/dex/functional
|
go test $@ github.com/coreos/dex/functional
|
||||||
|
go test $@ github.com/coreos/dex/functional/repo
|
||||||
|
|
Loading…
Reference in a new issue