Closed jgfoster closed 2 years ago
I guess that ant runs out of memory. Try to set ANT_OPTS with -Xmx1g before running ant. That is
export ANT_OPTS=-Xmx1g
ant
Though I have not seen this particular error before. From what I was able to find, it may mean that the process received signal 9 (SIGKILL), which is an unblockable kill. This could be an out-of-memory condition on the operating system, as the GWT build uses four threads, each allowed to allocate up to 2 GB of memory. You can try to change the build.xml here to set the number of local workers to just one.
With the change to use only one thread and ANT_OPTS environment variable, we get the following:
BUILD SUCCESSFUL
Total time: 80 minutes 18 seconds
Thanks for your suggestions.
I've created a Docker image with the following:
I then connected to that image and ran
ant
(after fixing the deprecation warnings as proposed in #113):How should I investigate this?