LBITS := $(shell getconf LONG_BIT) ifeq ($(LBITS),64) RACE=-race endif test-examples: go build -o /dev/null ./examples/... 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-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