You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/10/01 13:44:08 UTC

[GitHub] [spark] sarutak opened a new pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

sarutak opened a new pull request #29921:
URL: https://github.com/apache/spark/pull/29921


   ### What changes were proposed in this pull request?
   <!--
   Please clarify what changes you are proposing. The purpose of this section is to outline the changes and how this PR fixes the issue. 
   If possible, please consider writing useful notes for better and faster reviews in your PR. See the examples below.
     1. If you refactor some codes with changing classes, showing the class hierarchy will help reviewers.
     2. If you fix some SQL features, you can provide some references of other DBMSes.
     3. If there is design documentation, please add the link.
     4. If there is a discussion in the mailing list, please add the link.
   -->
   This PR fixes the description how to build Spark for Scala 2.13 with sbt.
   In the current doc, how to build Spark for Scala 2.13 with sbt is described like:
   ![scala-2 13-build-before](https://user-images.githubusercontent.com/4736016/94816248-80c3e900-0436-11eb-9bc2-99af5786971a.png)
   
   But build fails with this command because scala-2.13 profile is not enabled and scala-parallel-collections is absent.
   
   ```
   [error] /home/kou/work/oss/spark-scala-2.13/core/src/main/scala/org/apache/spark/rdd/UnionRDD.scala:23: object parallel is not a member of package collection
   ```
   
   The correct command should be:
   ```
   build/sbt -Pspark-2.13 compile
   ```
   
   ### Why are the changes needed?
   <!--
   Please clarify why the changes are needed. For instance,
     1. If you propose a new API, clarify the use case for a new API.
     2. If you fix a bug, you can clarify why it is a bug.
   -->
   The build command is wrong.
   
   ### Does this PR introduce _any_ user-facing change?
   <!--
   Note that it means *any* user-facing change including all aspects such as the documentation fix.
   If yes, please clarify the previous behavior and the change this PR proposes - provide the console output, description and/or an example to show the behavior difference if possible.
   If possible, please also clarify if this is a user-facing change compared to the released Spark versions or within the unreleased branches such as master.
   If no, write 'No'.
   -->
   No.
   
   ### How was this patch tested?
   <!--
   If tests were added, say they were added here. Please make sure to add some test cases that check the changes thoroughly including negative and positive cases if possible.
   If it was tested in a way different from regular unit tests, please clarify how you tested step by step, ideally copy and paste-able, so that other reviewers can test and check, and descendants can verify in the future.
   If tests were not added, please describe why they were not added and/or why it was difficult to add.
   -->
   
   I checked that `sbt -Pspark-2.13` is correct with the following command:
   ```
   build/sbt -Dscala.version=2.13.3 -Phive -Phive-thriftserver -Pyarn -Pkubernetes  compile
   ```
   
   I also build the modified doc and checked the generated html:
   ![scala-2 13-build-after](https://user-images.githubusercontent.com/4736016/94816924-6cccb700-0437-11eb-90d7-f6dfa43a2316.png)
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702151721


   **[Test build #129306 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129306/testReport)** for PR 29921 at commit [`0d06054`](https://github.com/apache/spark/commit/0d060549140c77bc2f464f04ae563f39d602e094).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702196629


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/33921/
   Test FAILed.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702451005






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] dongjoon-hyun commented on a change in pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on a change in pull request #29921:
URL: https://github.com/apache/spark/pull/29921#discussion_r498441554



##########
File path: docs/building-spark.md
##########
@@ -265,15 +265,13 @@ Change the major Scala version using (e.g. 2.13):
 
     ./dev/change-scala-version.sh 2.13
 
-For Maven, please enable the profile (e.g. 2.13):
+Eenable the profile (e.g. 2.13):

Review comment:
       @sarutak . nit. A typo: `Eenable` -> `Enable`?




----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702451005






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702217471






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702253214


   Kubernetes integration test status success
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33922/
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702217471






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702196616






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702430731


   **[Test build #129321 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129321/testReport)** for PR 29921 at commit [`4c712f3`](https://github.com/apache/spark/commit/4c712f370e299fe5097bf988107726587ece90fc).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702158198






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702253250






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702443564


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33934/
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702242094


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33922/
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702253250






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702434086






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702211028


   **[Test build #129307 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129307/testReport)** for PR 29921 at commit [`0d06054`](https://github.com/apache/spark/commit/0d060549140c77bc2f464f04ae563f39d602e094).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702211028


   **[Test build #129307 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129307/testReport)** for PR 29921 at commit [`0d06054`](https://github.com/apache/spark/commit/0d060549140c77bc2f464f04ae563f39d602e094).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] sarutak commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
sarutak commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702208916


   retest this please.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702433809


   **[Test build #129321 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129321/testReport)** for PR 29921 at commit [`4c712f3`](https://github.com/apache/spark/commit/4c712f370e299fe5097bf988107726587ece90fc).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] sarutak commented on a change in pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
sarutak commented on a change in pull request #29921:
URL: https://github.com/apache/spark/pull/29921#discussion_r498539959



##########
File path: docs/building-spark.md
##########
@@ -265,15 +265,13 @@ Change the major Scala version using (e.g. 2.13):
 
     ./dev/change-scala-version.sh 2.13
 
-For Maven, please enable the profile (e.g. 2.13):
+Eenable the profile (e.g. 2.13):

Review comment:
       Ah, I'll fix it. Thanks.




----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702183279


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33921/
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702217275


   **[Test build #129307 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129307/testReport)** for PR 29921 at commit [`0d06054`](https://github.com/apache/spark/commit/0d060549140c77bc2f464f04ae563f39d602e094).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702196616


   Merged build finished. Test FAILed.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702434086






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] srowen commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
srowen commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702440317


   Merged to master


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702430731


   **[Test build #129321 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129321/testReport)** for PR 29921 at commit [`4c712f3`](https://github.com/apache/spark/commit/4c712f370e299fe5097bf988107726587ece90fc).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702196584


   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33921/
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702450877


   Kubernetes integration test status success
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33934/
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] srowen closed pull request #29921: [SPARK-33046][DOCS] Update how to build doc for Scala 2.13 with sbt

Posted by GitBox <gi...@apache.org>.
srowen closed pull request #29921:
URL: https://github.com/apache/spark/pull/29921


   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702151721


   **[Test build #129306 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129306/testReport)** for PR 29921 at commit [`0d06054`](https://github.com/apache/spark/commit/0d060549140c77bc2f464f04ae563f39d602e094).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702157988


   **[Test build #129306 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129306/testReport)** for PR 29921 at commit [`0d06054`](https://github.com/apache/spark/commit/0d060549140c77bc2f464f04ae563f39d602e094).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #29921: [SPARK-33046][DOCS] How to build for Scala 2.13 with sbt in the doc is wrong.

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29921:
URL: https://github.com/apache/spark/pull/29921#issuecomment-702158198






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org