Skip to content

Commit 479f59a

Browse files
committed
chore: List user prefs
1 parent 6747690 commit 479f59a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.gitlab-ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,26 @@ build_tests:
570570
- ./gradlew --version
571571
- ./gradlew $GRADLE_TARGET $GRADLE_PARAMS -PtestJvm=$testJvm -Pslot=$CI_NODE_INDEX/$CI_NODE_TOTAL $GRADLE_ARGS --continue || $CONTINUE_ON_FAILURE
572572
after_script:
573+
- env
574+
- |
575+
# Print java preferences directory tree
576+
echo "Java Preferences directory structure:"
577+
if [ -d ~/.java/.userPrefs ]; then
578+
echo "Full tree:"
579+
find ~/.java/.userPrefs -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
580+
echo ""
581+
echo "All files with details:"
582+
find ~/.java/.userPrefs -type f -ls
583+
echo ""
584+
echo "Lock files:"
585+
find ~/.java/.userPrefs -name "*.lock*" -ls 2>/dev/null || echo "No lock files found"
586+
echo ""
587+
echo "Directory count: $(find ~/.java/.userPrefs -type d | wc -l)"
588+
echo "File count: $(find ~/.java/.userPrefs -type f | wc -l)"
589+
else
590+
echo "~/.java/.userPrefs does not exist"
591+
fi
592+
573593
- *restore_pretest_env
574594
- *set_datadog_api_keys
575595
- *cgroup_info

0 commit comments

Comments
 (0)