mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
815a26f982
We use rustup to source our rustc toolchain, however due to rust being a common dependency, the toolchain might get install when installing build depds of packages. Ensure rust can cargo are removed if that happens Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7455>
12 lines
233 B
Bash
12 lines
233 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
apt update -y && apt full-upgrade -y
|
|
apt install -y $(<./ci/docker/debian/deps.txt)
|
|
|
|
apt remove -y rustc cargo
|
|
|
|
pip3 install --break-system-packages meson hotdoc python-gitlab tomli junitparser
|
|
|
|
apt clean all
|