Since we are at it, replace "cd" with pushd / popd and homogenize how VK-GL-CTS is built in comparison with other build scripts. Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
11 lines
267 B
Bash
11 lines
267 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
git clone https://gitlab.freedesktop.org/mesa/parallel-deqp-runner.git --depth 1 -b mesa-ci-2019-12-17 /parallel-deqp-runner
|
|
pushd /parallel-deqp-runner
|
|
meson build/ $EXTRA_MESON_ARGS
|
|
ninja -C build -j4 install
|
|
popd
|
|
rm -rf /parallel-deqp-runner
|