mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
83694a1094
We used to have them pinned to avoid unexpected issues when we wanted to update the image, however we haven't needed them lately and we should be good to install the latest stable version always. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6656>
10 lines
206 B
Bash
10 lines
206 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
apt update -y && apt full-upgrade -y
|
|
apt install -y $(<./ci/docker/debian/deps.txt)
|
|
|
|
pip3 install --break-system-packages meson hotdoc python-gitlab tomli junitparser
|
|
|
|
apt clean all
|