mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
Bump to Buildah v1.11.5. Most notably changes to the podman build `--pull` functionality. `--pull=true` and `--pull=false` now work as Docker does, `--pull-never` added to supply the functionality of the old `--pull=false`. Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
23 lines
335 B
Makefile
23 lines
335 B
Makefile
.PHONY: \
|
|
all \
|
|
lint \
|
|
pretest \
|
|
test \
|
|
integration
|
|
|
|
all: test
|
|
|
|
lint:
|
|
cd /tmp && GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
|
golangci-lint run
|
|
|
|
pretest: lint
|
|
|
|
gotest:
|
|
go test -race -vet all ./...
|
|
|
|
test: pretest gotest
|
|
|
|
integration:
|
|
go test -tags docker_integration -run TestIntegration -v
|