From 38d1e73868c51fd73c8a9348b221f8ab0175588e Mon Sep 17 00:00:00 2001 From: David Heidelberg Date: Thu, 27 Jul 2023 16:16:48 +0300 Subject: [PATCH] ci/kdl: remove extra-verbose ls command Not needed for non-debugging builds. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9422 Signed-off-by: David Heidelberg Part-of: --- .gitlab-ci/common/kdl.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci/common/kdl.sh b/.gitlab-ci/common/kdl.sh index 38e967ee2c0..4e8a8d5d3fb 100755 --- a/.gitlab-ci/common/kdl.sh +++ b/.gitlab-ci/common/kdl.sh @@ -14,14 +14,10 @@ trap terminate SIGTERM if [ -f /ci-kdl.venv/bin/activate ]; then source /ci-kdl.venv/bin/activate - echo -e "Launch ci-kdl" /ci-kdl.venv/bin/python /ci-kdl.venv/bin/ci-kdl | tee -a /results/kdl.log & child=$! wait $child - ls -l mv kdl_*.json /results/kdl.json - echo -e "ci-kdl json file moved to /results" - ls -ls /results else echo -e "Not possible to activate ci-kdl virtual environment" fi