Files
TomSweeneyRedHat 3d86a9658e Bump Buildah to v1.33.0
As the title says.  This is the last dance step in preparation
for Podman v4.8.

[NO NEW TESTS NEEDED]

Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
2023-11-17 18:02:59 -05:00

18 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