From bde99436aaae35c20a5b792ced4b1b2ef7d8484a Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 20 Jul 2022 14:46:43 +0200 Subject: [PATCH] gitlab-ci: print git-status during do_clean() in "run-test.sh" If we have a non-clean working directory after do_clean(), that is a bug and something we need to investigate. Print information to make that easier to debug. --- .gitlab-ci/run-test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci/run-test.sh b/.gitlab-ci/run-test.sh index 8ae519596..dfaee99ba 100755 --- a/.gitlab-ci/run-test.sh +++ b/.gitlab-ci/run-test.sh @@ -23,6 +23,9 @@ do_clean() { # "make -C update-po", run on "make dist" has a silly habit of # modifying files in-tree. Lets undo that. git checkout -- po/ + + git status + git diff } uname -a