mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
13 lines
368 B
Bash
13 lines
368 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
meson_args="${MESON_ARGS:-}"
|
|
|
|
install_prefix=/tmp/install
|
|
MESON_ARGS="${meson_args} --prefix ${install_prefix} --optimization=g" ./ci/scripts/build.sh build/
|
|
ninja -C build/ install
|
|
|
|
find ${install_prefix}/lib64 -type f -iname *libgst*.so.* -print0 | xargs -0 -I '{}' bash ./ci/scripts/save-abi.sh {} ${ABI_CHECK_CACHE}
|
|
|
|
rm -rf $install_prefix
|