mirror of
https://github.com/moby/buildkit.git
synced 2026-08-11 01:24:03 +00:00
12 lines
454 B
Bash
Executable File
12 lines
454 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail -x
|
|
|
|
# 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
|
|
docker run --rm buildkit:test go build ./frontend/dockerfile/cmd/dockerfile-frontend
|