mirror of
https://github.com/containers/podman.git
synced 2026-01-19 11:29:17 -05: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
|