2017-05-27 05:10:26 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eu -o pipefail -x
|
|
|
|
|
2017-11-30 01:41:44 +00:00
|
|
|
# update this to iidfile after 17.06
|
|
|
|
docker build -t buildkit:test --target integration-tests -f ./hack/dockerfiles/test.Dockerfile --force-rm .
|
|
|
|
|
|
|
|
docker run --rm -v /tmp --privileged buildkit:test go test -tags standalone ${TESTFLAGS:--v} ${TESTPKGS:-./...}
|
|
|
|
|
|
|
|
docker run --rm buildkit:test go build ./frontend/gateway/client
|