mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 17:41:05 +00:00
ci: install gst from mono repo
This commit is contained in:
parent
b13f2060dc
commit
da61c19b69
2 changed files with 8 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
variables:
|
||||
GST_RS_IMG_TAG: '2021-09-19.0'
|
||||
GST_RS_IMG_TAG: '2021-10-07.0'
|
||||
GST_RS_STABLE: '1.55.0'
|
||||
GST_RS_MSRV: '1.54.0'
|
||||
|
|
|
@ -2,9 +2,14 @@ set -e
|
|||
|
||||
pip3 install meson==0.59.1
|
||||
|
||||
git clone --depth 1 https://gitlab.freedesktop.org/gstreamer/gst-build.git --branch master
|
||||
cd gst-build
|
||||
# gstreamer-rs already has a 'gstreamer' directory so don't clone there
|
||||
pushd .
|
||||
cd ..
|
||||
git clone --depth 1 https://gitlab.freedesktop.org/gstreamer/gstreamer.git --branch main
|
||||
cd gstreamer
|
||||
|
||||
meson build -D prefix=/usr/local -D devtools=disabled -D examples=disabled -D gtk_doc=disabled -D introspection=disabled -D libav=disabled -D libnice=disabled -D python=disabled -D ugly=disabled -D vaapi=disabled
|
||||
ninja -C build
|
||||
ninja -C build install
|
||||
|
||||
popd
|
Loading…
Reference in a new issue