mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-03 23:24:17 +08:00
c90b433f18
Makes easier do changes, when shellcheck is warning-free. Reviewed-by: Guilherme Gallo <guilherme.gallo@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17574>
19 lines
390 B
Bash
19 lines
390 B
Bash
#!/bin/bash
|
|
# shellcheck disable=SC2086 # we want word splitting
|
|
|
|
set -ex
|
|
|
|
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.13.0 \
|
|
--depth 1 \
|
|
/va-utils
|
|
|
|
pushd /va-utils
|
|
meson build -D tests=true -Dprefix=/va $EXTRA_MESON_ARGS
|
|
ninja -C build install
|
|
popd
|
|
rm -rf /va-utils
|