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 .
|
|
|
|
|
2017-12-15 07:00:13 +00:00
|
|
|
docker run --rm -v /tmp --privileged buildkit:test go test -tags no_containerd_worker ${TESTFLAGS:--v} ${TESTPKGS:-./...}
|
2017-11-30 01:41:44 +00:00
|
|
|
|
|
|
|
docker run --rm buildkit:test go build ./frontend/gateway/client
|
2017-12-13 23:46:52 +00:00
|
|
|
docker run --rm buildkit:test go build ./frontend/dockerfile/cmd/dockerfile-frontend
|