puniverse / quasar

Fibers, Channels and Actors for the JVM
http://docs.paralleluniverse.co/quasar/
Other
4.56k stars 575 forks source link

Build fails if LANG environment variable is unset. #270

Closed felixvf closed 7 years ago

felixvf commented 7 years ago

When executing

LANG= gradle --no-daemon quasar-core:clean quasar-core:javadoc

then the build fails with

:quasar-core:javadoc
/home/user/work/privat/repos/palai/palai_client_shell/external/quasar/quasar-core/src/main/java/co/paralleluniverse/common/monitoring/CpuUsageGaugeSet.java:33: error: unmappable character for encoding ASCII
 *  <li>{@code process.cpuUsage} ??? the CPU percentage currently used by the process (averaged between measurements).
                                 ^
/home/user/work/privat/repos/palai/palai_client_shell/external/quasar/quasar-core/src/main/java/co/paralleluniverse/common/monitoring/CpuUsageGaugeSet.java:33: error: unmappable character for encoding ASCII
 *  <li>{@code process.cpuUsage} ??? the CPU percentage currently used by the process (averaged between measurements).
                                  ^
/home/user/work/privat/repos/palai/palai_client_shell/external/quasar/quasar-core/src/main/java/co/paralleluniverse/common/monitoring/CpuUsageGaugeSet.java:33: error: unmappable character for encoding ASCII
 *  <li>{@code process.cpuUsage} ??? the CPU percentage currently used by the process (averaged between measurements).
                                   ^
/home/user/work/privat/repos/palai/palai_client_shell/external/quasar/quasar-core/src/main/java/co/paralleluniverse/strands/channels/QueueChannel.java:288: error: unmappable character for encoding ASCII
        if (!sendClosed) // possible race here, but it's OK ??? we just let one of the concurrent exceptions through
                                                            ^
/home/user/work/privat/repos/palai/palai_client_shell/external/quasar/quasar-core/src/main/java/co/paralleluniverse/strands/channels/QueueChannel.java:288: error: unmappable character for encoding ASCII
        if (!sendClosed) // possible race here, but it's OK ??? we just let one of the concurrent exceptions through
                                                             ^
/home/user/work/privat/repos/palai/palai_client_shell/external/quasar/quasar-core/src/main/java/co/paralleluniverse/strands/channels/QueueChannel.java:288: error: unmappable character for encoding ASCII
        if (!sendClosed) // possible race here, but it's OK ??? we just let one of the concurrent exceptions through
                                                              ^
6 errors
:quasar-core:javadoc FAILED

while it should succeed.