------------------------------------------------------------
revno: 746
committer: Matthias Klose <[email protected]>
branch nick: openjdk8
timestamp: Mon 2019-06-10 12:14:23 +0200
message:
  [ Tiago Stürmer Daitx ]
  Find any hs_err_pid files generated during the build and send to stdout.
modified:
  debian/buildwatch.sh
  debian/changelog


--
lp:~openjdk/openjdk/openjdk8
https://code.launchpad.net/~openjdk/openjdk/openjdk8

Your team Debian Java Maintainers is subscribed to branch 
lp:~openjdk/openjdk/openjdk8.
To unsubscribe from this branch go to 
https://code.launchpad.net/~openjdk/openjdk/openjdk8/+edit-subscription
=== modified file 'debian/buildwatch.sh'
--- debian/buildwatch.sh	2017-05-01 17:51:00 +0000
+++ debian/buildwatch.sh	2019-06-10 10:14:23 +0000
@@ -26,6 +26,17 @@
     return $?
 }
 
+cleanup() {
+    # find any hs_err_pid files generated during the build and print them out
+    # this helps debugging what went wrong during builds
+    find . -type f -name 'hs_err_pid*.log' \
+      -printf "[$0] === HOTSPOT ERROR LOG ===\n[$0] %p (last modification at %t)\n" \
+      -exec cat {} \;
+}
+
+for sig in INT QUIT HUP TERM; do trap "cleanup; trap - $sig EXIT; kill -s $sig "'"$$"' "$sig"; done
+trap cleanup EXIT
+
 while ! time_up; do
     if [ ! -f buildwatch.pid ]; then
         echo "[$0] pidfile removed" && break

=== modified file 'debian/changelog'
--- debian/changelog	2019-06-07 07:36:26 +0000
+++ debian/changelog	2019-06-10 10:14:23 +0000
@@ -1,3 +1,10 @@
+openjdk-8 (8u222-b04-4) UNRELEASED; urgency=medium
+
+  [ Tiago Stürmer Daitx ]
+  * Find any hs_err_pid files generated during the build and send to stdout.
+
+ -- Matthias Klose <[email protected]>  Mon, 10 Jun 2019 11:38:10 +0200
+
 openjdk-8 (8u222-b04-3) experimental; urgency=medium
 
   * Update ARM32 to jdk8u222-b04-aarch32-190603.

__
This is the maintainer address of Debian's Java team
<https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-maintainers>.
 Please use
[email protected] for discussions and questions.

Reply via email to