9 lines
287 B
Plaintext
9 lines
287 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu -o pipefail -x
|
||
|
|
||
|
# update this to iidfile after 17.06
|
||
|
docker build -t buildkit_poc:test --target unit-tests -f ./hack/dockerfiles/test.Dockerfile --force-rm .
|
||
|
docker run --rm -v /tmp --privileged buildkit_poc:test go test ${TESTFLAGS:--v} ${TESTPKGS:-./...}
|
||
|
|