mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 12:14:10 +08:00
4c52663e4a
Signed-off-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31281>
26 lines
669 B
Bash
26 lines
669 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2086 # we want word splitting
|
|
# When changing this file, you need to bump the following
|
|
# .gitlab-ci/image-tags.yml tags:
|
|
# KERNEL_ROOTFS_TAG
|
|
|
|
set -uex
|
|
|
|
git config --global user.email "mesa@example.com"
|
|
git config --global user.name "Mesa CI"
|
|
|
|
git clone \
|
|
https://github.com/intel/libva-utils.git \
|
|
-b 2.18.1 \
|
|
--depth 1 \
|
|
/va-utils
|
|
|
|
pushd /va-utils
|
|
# Too old libva in Debian 11. TODO: when this PR gets in, refer to the patch.
|
|
curl -L https://github.com/intel/libva-utils/pull/329.patch | git am
|
|
|
|
meson setup build -D tests=true -Dprefix=/va ${EXTRA_MESON_ARGS:-}
|
|
meson install -C build
|
|
popd
|
|
rm -rf /va-utils
|