spiegel_podman/vendor/github.com/openshift/imagebuilder/Makefile
tomsweeneyredhat 2ba0070cc4
Bump runc to 1.2.9, Buildah 1.29.6
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>
2026-01-28 10:45:58 -05:00

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