From 011317b23fe1fddf27a2e883bbdc860998244678 Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Mon, 8 May 2023 19:55:17 +0100 Subject: [PATCH] Cat /proc/partitions and list /dev in GitLab CI test jobs (!113) Add these simple debugging aids to the GNOME GitLab CI test job. They've been needed before [1] so add them permanently. [1] 57983b9fc20c9367f9dd83a8301e903fced5329e Create block special devices needed by test_BlockSpecial in GitLab CI jobs (!59) "Contents of /proc/partitions inside the Docker image when this test CI job failed: ... And the listing of /dev/: " Closed !113 - Fix occasional GitLab CI test jobs failures on BlockSpecial unit tests --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 376ba699..1817bac9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -80,6 +80,8 @@ stages: - export GTEST_FILTER=`tests/exclude_loopdev_tests.sh tests/test_SupportedFileSystems.cc` - echo $GTEST_FILTER - fgrep -v nodev /proc/filesystems | sort + - cat /proc/partitions + - ls -l /dev # Create needed /dev entries for unit tests in Docker images. - tests/makedev.sh - make check