mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-10 09:37:52 +00:00
Cherry picked from commit 2e8bce201e with
additional updates required for the v4.2.0-rhel branch.
Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
Assisted by AI: Cursor <Auto>
Signed-off-by: Chris Evich <cevich@redhat.com>
17 lines
299 B
Makefile
17 lines
299 B
Makefile
build:
|
|
go build ./cmd/imagebuilder
|
|
.PHONY: build
|
|
|
|
test:
|
|
go test ./...
|
|
.PHONY: test
|
|
|
|
test-conformance:
|
|
go test -v -tags conformance -timeout 45m ./dockerclient
|
|
.PHONY: test-conformance
|
|
|
|
.PHONY: vendor
|
|
vendor:
|
|
GO111MODULE=on go mod tidy
|
|
GO111MODULE=on go mod vendor
|
|
GO111MODULE=on go mod verify
|