2017-06-19 23:10:09 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eu -o pipefail -x
|
|
|
|
|
|
|
|
# update this to iidfile after 17.06
|
2017-06-22 20:15:46 +00:00
|
|
|
docker build -t buildkit:test --target unit-tests -f ./hack/dockerfiles/test.Dockerfile --force-rm .
|
|
|
|
docker run --rm -v /tmp --privileged buildkit:test go test ${TESTFLAGS:--v} ${TESTPKGS:-./...}
|
2017-07-05 02:00:27 +00:00
|
|
|
docker run --rm -v /tmp --privileged buildkit:test go test -tags standalone -v ./control
|