mirror of
https://github.com/aler9/gortsplib
synced 2025-10-05 15:16:51 +08:00
44 lines
937 B
Makefile
44 lines
937 B
Makefile
LBITS := $(shell getconf LONG_BIT)
|
|
ifeq ($(LBITS),64)
|
|
RACE=-race
|
|
endif
|
|
|
|
test-examples:
|
|
go build -o /dev/null ./examples/...
|
|
|
|
test-internal:
|
|
go test -v $(RACE) -coverprofile=coverage-internal.txt ./internal/...
|
|
|
|
test-pkg:
|
|
go test -v $(RACE) -coverprofile=coverage-pkg.txt ./pkg/...
|
|
|
|
test-root:
|
|
go test -v $(RACE) -coverprofile=coverage-root.txt .
|
|
|
|
test-nodocker: test-examples test-internal test-pkg test-root
|
|
|
|
define DOCKERFILE_TEST
|
|
ARG ARCH
|
|
FROM $$ARCH/$(BASE_IMAGE)
|
|
RUN apk add --no-cache make git gcc musl-dev pkgconfig ffmpeg-dev
|
|
WORKDIR /s
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY . ./
|
|
endef
|
|
export DOCKERFILE_TEST
|
|
|
|
test:
|
|
echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=amd64
|
|
docker run --rm -it \
|
|
--name temp \
|
|
temp \
|
|
make test-nodocker
|
|
|
|
test32:
|
|
echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=i386
|
|
docker run --rm \
|
|
--name temp \
|
|
temp \
|
|
make test-nodocker
|