From 745540378c014ce29f8195f7067278491cc22a40 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Tue, 28 Jul 2020 08:22:34 +0200 Subject: [PATCH] ci: Print load stats after running dEQP So we can get an idea if what are the bottlenecks when looking for opportunities to speed things up. Signed-off-by: Tomeu Vizoso Reviewed-by: Daniel Stone Reviewed-by: Rohan Garg Part-of: --- .gitlab-ci/deqp-runner.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index f68dd00600c..2c36a303db2 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -280,6 +280,9 @@ FLAKESFILE=$RESULTS/cts-runner-flakes$DEQP_RUN_SUFFIX.txt run_cts $DEQP /tmp/case-list.txt $RESULTSFILE DEQP_EXITCODE=$? +echo "System load: $(cut -d' ' -f1-3 < /proc/loadavg)" +echo "# of CPU cores: $(cat /proc/cpuinfo | grep processor | wc -l)" + # junit is disabled, because it overloads gitlab.freedesktop.org to parse it. #quiet generate_junit $RESULTSFILE > $RESULTS/results.xml -- 2.30.2