diff options
author | Tomeu Vizoso <[email protected]> | 2019-12-13 10:20:23 +0100 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2020-01-06 14:27:36 +0100 |
commit | d62dd8b0cb7f74ec43fac6f59c42178f4cf08c54 (patch) | |
tree | 8fb247c9dd579ebb53737fe2e27a2cf6ea778d28 /.gitlab-ci/build-cts-runner.sh | |
parent | f5c2807ff280c77081b1af8161582f99893c6404 (diff) |
gitlab-ci: Switch LAVA jobs to use shared dEQP runner
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 <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to '.gitlab-ci/build-cts-runner.sh')
-rw-r--r-- | .gitlab-ci/build-cts-runner.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/build-cts-runner.sh b/.gitlab-ci/build-cts-runner.sh index 716cf661637..cd6c6adbce7 100644 --- a/.gitlab-ci/build-cts-runner.sh +++ b/.gitlab-ci/build-cts-runner.sh @@ -2,9 +2,9 @@ set -ex -git clone https://gitlab.freedesktop.org/mesa/parallel-deqp-runner.git --depth 1 -b mesa-ci-2019-11-22 +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/ +meson build/ $EXTRA_MESON_ARGS ninja -C build -j4 install cd .. rm -rf parallel-deqp-runner |