From 4b861661b5b92db5e3cfa596a3cfa5f624df7199 Mon Sep 17 00:00:00 2001 From: David Colburn Date: Thu, 6 Jun 2024 12:21:28 -0700 Subject: [PATCH] gstreamer 1.22.4 --- .github/workflows/publish-gstreamer-base.yaml | 2 +- build/egress/Dockerfile | 4 ++-- build/gstreamer/tag.sh | 3 +-- build/test/Dockerfile | 4 ++-- magefile.go | 2 +- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-gstreamer-base.yaml b/.github/workflows/publish-gstreamer-base.yaml index fa17491e..a1921895 100644 --- a/.github/workflows/publish-gstreamer-base.yaml +++ b/.github/workflows/publish-gstreamer-base.yaml @@ -13,7 +13,7 @@ on: DOCKERHUB_TOKEN: required: true env: - GST_VERSION: "1.22.8" + GST_VERSION: "1.24.4" LIBNICE_VERSION: "0.1.21" jobs: diff --git a/build/egress/Dockerfile b/build/egress/Dockerfile index 2f3c210e..4c8993a8 100644 --- a/build/egress/Dockerfile +++ b/build/egress/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM livekit/gstreamer:1.22.8-dev +FROM livekit/gstreamer:1.24.4-dev ARG TARGETPLATFORM ARG TARGETARCH @@ -51,7 +51,7 @@ ENV TINI_VERSION v0.19.0 ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TARGETARCH} /tini RUN chmod +x /tini -FROM livekit/gstreamer:1.22.8-prod +FROM livekit/gstreamer:1.24.4-prod ARG TARGETPLATFORM diff --git a/build/gstreamer/tag.sh b/build/gstreamer/tag.sh index 7a662432..1acb09cc 100755 --- a/build/gstreamer/tag.sh +++ b/build/gstreamer/tag.sh @@ -2,7 +2,7 @@ image_suffix=(base dev prod prod-rs) archs=(amd64 arm64) -gst_version=1.22.8 +gst_version=1.24.4 for suffix in ${image_suffix[*]} do @@ -24,4 +24,3 @@ do docker manifest create livekit/gstreamer:$gst_version-$suffix$manifests docker manifest push livekit/gstreamer:$gst_version-$suffix done - diff --git a/build/test/Dockerfile b/build/test/Dockerfile index ef1d50c2..882eec5f 100644 --- a/build/test/Dockerfile +++ b/build/test/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM livekit/gstreamer:1.22.8-dev +FROM livekit/gstreamer:1.24.4-dev WORKDIR /workspace @@ -48,7 +48,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then GOARCH=arm64; else GOARCH=amd CGO_ENABLED=1 GOOS=linux GOARCH=${GOARCH} GO111MODULE=on go test -c -v -race --tags=integration ./test -FROM livekit/gstreamer:1.22.8-prod +FROM livekit/gstreamer:1.24.4-prod ARG TARGETPLATFORM diff --git a/magefile.go b/magefile.go index 74fe86dc..7fbebfab 100644 --- a/magefile.go +++ b/magefile.go @@ -29,7 +29,7 @@ import ( ) const ( - gstVersion = "1.22.8" + gstVersion = "1.24.4" libniceVersion = "0.1.21" chromiumVersion = "124.0.6367.201" dockerBuild = "docker build"