diff options
author | Eric Anholt <[email protected]> | 2020-02-19 10:29:32 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2020-02-21 15:28:38 -0800 |
commit | 7f3f9b2b1920da3badf503a0682de7beb9e86464 (patch) | |
tree | fa62aee12e510f3b3acc1d940e4ab0bae3e457db | |
parent | 4c372d384a702e2be6887e4b2b0b6e04ab27e052 (diff) |
ci: Don't bother generating deqp junit results since we don't present it.
We disabled presentation a while back because it's so expensive for gitlab
to parse it on the other side. We may have a use for it some day if
gitlab gets better, but for now let's not spend the time processing it.
Reviewed-by: Tomeu Vizoso <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3883>
-rwxr-xr-x | .gitlab-ci/deqp-runner.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index 4e2b911624c..b527444468c 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -188,7 +188,8 @@ quiet() { run_cts $DEQP /tmp/case-list.txt $RESULTS/cts-runner-results.txt DEQP_EXITCODE=$? -quiet generate_junit $RESULTS/cts-runner-results.txt > $RESULTS/results.xml +# junit is disabled, because it overloads gitlab.freedesktop.org to parse it. +#quiet generate_junit $RESULTS/cts-runner-results.txt > $RESULTS/results.xml if [ $DEQP_EXITCODE -ne 0 ]; then # preserve caselist files in case of failures: |