Should hopefully get rid of some issues on Windows related to environment variables gitlab sets (e.g. author names or MR descriptions). Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8840>
13 lines
240 B
Bash
13 lines
240 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==1.7.2 hotdoc python-gitlab tomli junitparser
|
|
|
|
apt clean all
|