blob: 1cbb26eed416ed1a1e6053b89f4a727eb3300539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
build:
go build ./cmd/imagebuilder
.PHONY: build
test:
go test $(go list ./... | grep -v /vendor/)
.PHONY: test
test-conformance:
go test -v -tags conformance -timeout 10m ./dockerclient
.PHONY: test-conformance
|