
Take one step towards sharing code between the LAVA and non-LAVA jobs, with the goals of reducing maintenance burden and use of computational resources. The env var DEQP_NO_SAVE_RESULTS allows us to skip the procesing of the XML result files, which can take a long time and is not useful in the LAVA case as we are not uploading artifacts anywhere at the moment. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Reviewed-by: Eric Anholt <eric@anholt.net>
11 lines
241 B
Bash
11 lines
241 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
|
|
cd parallel-deqp-runner
|
|
meson build/ $EXTRA_MESON_ARGS
|
|
ninja -C build -j4 install
|
|
cd ..
|
|
rm -rf parallel-deqp-runner
|