File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments