mirror of
https://github.com/containers/podman.git
synced 2025-12-02 19:28:58 +08:00
12 lines
217 B
Makefile
12 lines
217 B
Makefile
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
|