mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
ci: fedora: Install virtme-ng and fluster
Also install extra packages: - busybox - iproute - qemu-system-x86 These are necessary for virtme to run a script in the virtual machine. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5434>
This commit is contained in:
parent
1e2c435d6c
commit
d005079ec4
2 changed files with 22 additions and 2 deletions
|
@ -5,7 +5,7 @@ variables:
|
|||
# If you are hacking on them or need a them to rebuild, its enough
|
||||
# to change any part of the string of the image you want.
|
||||
###
|
||||
FEDORA_TAG: '2023-10-22.1'
|
||||
FEDORA_TAG: '2023-10-25'
|
||||
|
||||
INDENT_TAG: '2023-08-24.3'
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ dnf install -y \
|
|||
aalib-devel \
|
||||
aom \
|
||||
bat \
|
||||
busybox \
|
||||
intel-mediasdk-devel \
|
||||
libaom \
|
||||
libaom-devel \
|
||||
|
@ -62,6 +63,7 @@ dnf install -y \
|
|||
gupnp-igd-devel \
|
||||
gssdp \
|
||||
gssdp-devel \
|
||||
iproute \
|
||||
faac-devel \
|
||||
ffmpeg \
|
||||
ffmpeg-libs \
|
||||
|
@ -111,6 +113,7 @@ dnf install -y \
|
|||
opencv-devel \
|
||||
openjpeg2 \
|
||||
openjpeg2-devel \
|
||||
qemu-system-x86 \
|
||||
SDL2 \
|
||||
SDL2-devel \
|
||||
sbc \
|
||||
|
@ -236,7 +239,7 @@ dnf builddep -y gstreamer1 \
|
|||
python3-gstreamer1
|
||||
|
||||
dnf remove -y meson -x ninja-build
|
||||
pip3 install meson==1.2.3 hotdoc==0.15 python-gitlab tomli
|
||||
pip3 install meson==1.2.3 hotdoc==0.15 python-gitlab tomli junitparser
|
||||
|
||||
# Remove gst-devel packages installed by builddep above
|
||||
dnf remove -y "gstreamer1*devel"
|
||||
|
@ -283,6 +286,23 @@ rustup --version
|
|||
cargo --version
|
||||
rustc --version
|
||||
|
||||
# Install virtme-ng
|
||||
git clone https://github.com/arighi/virtme-ng.git
|
||||
pushd virtme-ng
|
||||
git fetch --tags
|
||||
git checkout v1.8
|
||||
./setup.py install --prefix=/usr
|
||||
popd
|
||||
|
||||
# Install fluster
|
||||
pushd /opt/
|
||||
git clone https://github.com/fluendo/fluster.git
|
||||
pushd fluster
|
||||
git checkout 303a6edfda1701c8bc351909fb1173a0958810c2
|
||||
./fluster.py download
|
||||
popd
|
||||
popd
|
||||
|
||||
# get gstreamer and make all subprojects available
|
||||
git clone -b ${GIT_BRANCH} ${GIT_URL} /gstreamer
|
||||
git -C /gstreamer submodule update --init --depth=1
|
||||
|
|
Loading…
Reference in a new issue