dongjoon-hyun commented on a change in pull request #24716: [SPARK-25944][R][BUILD] AppVeyor change to latest R version (3.6.0) URL: https://github.com/apache/spark/pull/24716#discussion_r287857706
########## File path: appveyor.yml ########## @@ -52,6 +52,10 @@ build_script: environment: NOT_CRAN: true + # See SPARK-27848. Currently installing some dependent packagess causes + # "(converted from warning) unable to identify current timezone 'C':" for an unknown reason. + # This environment variable works around to test SparkR against a higher version. + R_REMOTES_NO_ERRORS_FROM_WARNINGS: true Review comment: Maybe, another workaround might be possible, but the current one also looks more robust. ``` Setting _R_CHECK_FORCE_SUGGESTS_=false while R_REMOTES_NO_ERRORS_FROM_WARNINGS is unset will also avoid stopping the installation for error messages. This is done because a warning is generated during installation when not all Suggested packages are not available. ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
