mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
30 lines
657 B
Bash
30 lines
657 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
# 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
|
|
|
|
# Build a linux image for virtme fluster tests
|
|
bash ./ci/scripts/build-linux.sh \
|
|
"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git" \
|
|
"v6.5.8" \
|
|
/opt/linux/bzImage \
|
|
'MEDIA_SUPPORT' \
|
|
'MEDIA_TEST_SUPPORT' \
|
|
'V4L_TEST_DRIVERS' \
|
|
'CONFIG_VIDEO_VISL'
|