mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
remove hls.js from the repository and restore plain MIT license (#3008)
This commit is contained in:
parent
fcf649cdaf
commit
9eb97ad3a0
12 changed files with 77 additions and 12 deletions
|
|
@ -26,6 +26,7 @@ ENV CGO_ENABLED 0
|
|||
RUN rm -rf tmp binaries
|
||||
RUN mkdir tmp binaries
|
||||
RUN cp mediamtx.yml LICENSE tmp/
|
||||
RUN go generate ./...
|
||||
|
||||
FROM build-base AS build-windows-amd64
|
||||
RUN GOOS=windows GOARCH=amd64 go build -ldflags "-X github.com/bluenviron/mediamtx/internal/core.version=$$VERSION" -o tmp/$(BINARY_NAME).exe
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
test-highlevel-nodocker:
|
||||
go generate ./...
|
||||
go test -v -race -tags enable_highlevel_tests ./internal/highleveltests
|
||||
|
||||
define DOCKERFILE_HIGHLEVEL_TEST
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
LBITS := $(shell getconf LONG_BIT)
|
||||
ifeq ($(LBITS),64)
|
||||
RACE=-race
|
||||
ifeq ($(shell getconf LONG_BIT),64)
|
||||
RACE=-race
|
||||
endif
|
||||
|
||||
test-internal:
|
||||
go generate ./...
|
||||
go test -v $(RACE) -coverprofile=coverage-internal.txt \
|
||||
$$(go list ./internal/... | grep -v /core)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue