tkobayas commented on issue #684: URL: https://github.com/apache/incubator-kie-issues/issues/684#issuecomment-1803397193
The issue is caused by a nested static class `Člověk` in https://github.com/apache/incubator-kie-drools/blob/main/drools-decisiontables/src/test/java/org/drools/decisiontable/UnicodeInXLSTest.java#L92 The java file is written in UTF-8, so it's no problem to compile it in UTF-8 environment (e.g. GHA ubuntu. and I believe Windows is also commonly UTF-8). However, the current GHA Windows is `Cp1252`, so failed in writing the class (name) to its filesystem. ``` 2023-11-08T08:39:14.5133024Z Default locale: en_US, platform encoding: Cp1252 2023-11-08T08:39:14.5134064Z OS name: "windows server 2022", version: "10.0", arch: "amd64", family: "windows" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
