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-deqp-gl.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-deqp-gl.sh')
-rw-r--r-- | .gitlab-ci/build-deqp-gl.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci/build-deqp-gl.sh b/.gitlab-ci/build-deqp-gl.sh index 7e4d894f261..64e4db0a2bc 100644 --- a/.gitlab-ci/build-deqp-gl.sh +++ b/.gitlab-ci/build-deqp-gl.sh @@ -29,6 +29,7 @@ cd /deqp cmake -G Ninja \ -DDEQP_TARGET=surfaceless \ -DCMAKE_BUILD_TYPE=Release \ + $EXTRA_CMAKE_ARGS \ /VK-GL-CTS ninja @@ -53,6 +54,6 @@ rm -rf /deqp/execserver rm -rf /deqp/modules/egl rm -rf /deqp/framework find -iname '*cmake*' -o -name '*ninja*' -o -name '*.o' -o -name '*.a' | xargs rm -rf -strip modules/*/deqp-* +${STRIP_CMD:-strip} modules/*/deqp-* du -sh * rm -rf /VK-GL-CTS |