You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by LantaoJin <gi...@git.apache.org> on 2018/10/09 08:29:12 UTC

[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow regression testing in ...

GitHub user LantaoJin opened a pull request:

    https://github.com/apache/spark/pull/22678

    [SPARK-25685][BUILD] Allow regression testing in enterprise Jenkins

    ## What changes were proposed in this pull request?
    
    Add some environment variables to allow regression testing in enterprise Jenkins instead of default Spark repository in GitHub.
    
    ## How was this patch tested?
    
    Manually test.


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/LantaoJin/spark SPARK-25685

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/22678.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #22678
    
----
commit cc34da8c2653254974975a5a11e4bd12943e4dba
Author: LantaoJin <ji...@...>
Date:   2018-10-09T08:25:03Z

    [SPARK-25685][BUILD] Allow regression testing in enterprise Jenkins

----


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    LGTM, pending Jenkins


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    **[Test build #97303 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97303/testReport)** for PR 22678 at commit [`d8e7ad0`](https://github.com/apache/spark/commit/d8e7ad09f70a0d907720417c8dbdd675df59a6b9).


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/22678


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by LantaoJin <gi...@git.apache.org>.
Github user LantaoJin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r223966833
  
    --- Diff: dev/run-tests-jenkins.py ---
    @@ -176,7 +177,8 @@ def main():
         build_display_name = os.environ["BUILD_DISPLAY_NAME"]
         build_url = os.environ["BUILD_URL"]
     
    -    commit_url = "https://github.com/apache/spark/commit/" + ghprb_actual_commit
    +    project_url = os.getenv("SPARK_PROJECT_URL", "https://github.com/apache/spark")
    +    commit_url = project_url + "/commit/" + ghprb_actual_commit
    --- End diff --
    
    How about to add documentation at https://spark.apache.org/docs/latest/building-spark.html?


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    LGTM


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r223917766
  
    --- Diff: dev/run-tests-jenkins.py ---
    @@ -39,7 +39,8 @@ def print_err(msg):
     def post_message_to_github(msg, ghprb_pull_id):
         print("Attempting to post to Github...")
     
    -    url = "https://api.github.com/repos/apache/spark/issues/" + ghprb_pull_id + "/comments"
    +    api_url = os.getenv("GITHUB_SERVER_API_URL", "https://api.github.com/repos/apache/spark")
    --- End diff --
    
    How about `GITHUB_API_BASE`? This is because [another script](https://github.com/apache/spark/blob/master/dev/github_jira_sync.py#L35) uses this name for this URL.


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow regression testing in enterpr...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Can one of the admins verify this patch?


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by LantaoJin <gi...@git.apache.org>.
Github user LantaoJin commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Sorry for closing the conversation mistakenly @dongjoon-hyun . I will update the documentation soon.


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow regression testing in enterpr...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Can one of the admins verify this patch?


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by LantaoJin <gi...@git.apache.org>.
Github user LantaoJin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224309582
  
    --- Diff: dev/run-tests-jenkins.py ---
    @@ -39,7 +39,8 @@ def print_err(msg):
     def post_message_to_github(msg, ghprb_pull_id):
         print("Attempting to post to Github...")
     
    -    url = "https://api.github.com/repos/apache/spark/issues/" + ghprb_pull_id + "/comments"
    +    api_url = os.getenv("GITHUB_SERVER_API_URL", "https://api.github.com/repos/apache/spark")
    --- End diff --
    
    Sure. @kiszk 


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224333345
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with enterprise Github
    +
    +To run tests with Jenkins:
    +
    +    ./dev/run-tests-jenkins
    +
    +If use an individual repository or an enterprise GitHub, export below environment variables before running above command.
    +
    +### Related environment variables
    +
    +<table class="table">
    +<tr><th>Variable Name</th><th>Default</th><th>Meaning</th></tr>
    +<tr>
    +  <td><code>GITHUB_API_BASE</code></td>
    +  <td>https://api.github.com/repos/apache/spark</td>
    +  <td>
    +    The GitHub server API URL. It could be pointed to an enterprise GitHub.
    +  </td>
    +</tr>
    +<tr>
    +  <td><code>SPARK_PROJECT_URL</code></td>
    +  <td>https://github.com/apache/spark</td>
    +  <td>
    +    The Spark project URL of (enterprise) GitHub.
    --- End diff --
    
    ditto


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

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


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224549100
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with Github Enterprise
    +
    +To run tests with Jenkins:
    +
    +    ./dev/run-tests-jenkins
    +
    +If use an individual repository or an GitHub Enterprise, export below environment variables before running above command.
    +
    +### Related environment variables
    +
    +<table class="table">
    +<tr><th>Variable Name</th><th>Default</th><th>Meaning</th></tr>
    +<tr>
    +  <td><code>GITHUB_API_BASE</code></td>
    +  <td>https://api.github.com/repos/apache/spark</td>
    +  <td>
    +    The GitHub server API URL. It could be pointed to an GitHub Enterprise.
    --- End diff --
    
    nit: `an` -> `a`


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    retest this please


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by dongjoon-hyun <gi...@git.apache.org>.
Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224172678
  
    --- Diff: dev/run-tests-jenkins.py ---
    @@ -176,7 +177,8 @@ def main():
         build_display_name = os.environ["BUILD_DISPLAY_NAME"]
         build_url = os.environ["BUILD_URL"]
     
    -    commit_url = "https://github.com/apache/spark/commit/" + ghprb_actual_commit
    +    project_url = os.getenv("SPARK_PROJECT_URL", "https://github.com/apache/spark")
    +    commit_url = project_url + "/commit/" + ghprb_actual_commit
    --- End diff --
    
    +1


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by dongjoon-hyun <gi...@git.apache.org>.
Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r223845057
  
    --- Diff: dev/run-tests-jenkins.py ---
    @@ -176,7 +177,8 @@ def main():
         build_display_name = os.environ["BUILD_DISPLAY_NAME"]
         build_url = os.environ["BUILD_URL"]
     
    -    commit_url = "https://github.com/apache/spark/commit/" + ghprb_actual_commit
    +    project_url = os.getenv("SPARK_PROJECT_URL", "https://github.com/apache/spark")
    +    commit_url = project_url + "/commit/" + ghprb_actual_commit
    --- End diff --
    
    Looks good. BTW, do we need to add some dev documentation for this useful new configuration; `GITHUB_SERVER_API_URL` and `SPARK_PROJECT_URL`? Is this targeting too specific users?


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224333028
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with enterprise Github
    +
    +To run tests with Jenkins:
    +
    +    ./dev/run-tests-jenkins
    +
    +If use an individual repository or an enterprise GitHub, export below environment variables before running above command.
    +
    +### Related environment variables
    +
    +<table class="table">
    +<tr><th>Variable Name</th><th>Default</th><th>Meaning</th></tr>
    +<tr>
    +  <td><code>GITHUB_API_BASE</code></td>
    +  <td>https://api.github.com/repos/apache/spark</td>
    +  <td>
    +    The GitHub server API URL. It could be pointed to an enterprise GitHub.
    --- End diff --
    
    ditto


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224549012
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with Github Enterprise
    +
    +To run tests with Jenkins:
    +
    +    ./dev/run-tests-jenkins
    +
    +If use an individual repository or an GitHub Enterprise, export below environment variables before running above command.
    --- End diff --
    
    nit: `an` -> `a`
    In addition, how about `an GitHub Enterprise` -> `a repository on GitHub Enterprise`?



---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Merged to master


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224332984
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with enterprise Github
    +
    +To run tests with Jenkins:
    +
    +    ./dev/run-tests-jenkins
    +
    +If use an individual repository or an enterprise GitHub, export below environment variables before running above command.
    --- End diff --
    
    ditto


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    **[Test build #4363 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4363/testReport)** for PR 22678 at commit [`cc34da8`](https://github.com/apache/spark/commit/cc34da8c2653254974975a5a11e4bd12943e4dba).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224332828
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with enterprise Github
    --- End diff --
    
    nit: `enterprise Github` -> `GitHub Enterprise`


---

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


[GitHub] spark pull request #22678: [SPARK-25685][BUILD] Allow running tests in Jenki...

Posted by dongjoon-hyun <gi...@git.apache.org>.
Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22678#discussion_r224327625
  
    --- Diff: docs/building-spark.md ---
    @@ -272,3 +272,31 @@ For SBT, specify a complete scala version using (e.g. 2.12.6):
         ./build/sbt -Dscala.version=2.12.6
     
     Otherwise, the sbt-pom-reader plugin will use the `scala.version` specified in the spark-parent pom.
    +
    +## Running Jenkins tests with enterprise Github
    +
    +To run tests with Jenkins:
    +
    +    ./dev/run-tests-jenkins
    +
    +If you use an individual repository or an enterprise GitHub, you should export below environment variables before running above command.
    +
    +### Related environment variables
    +
    +<table class="table">
    +<tr><th>variable Name</th><th>Default</th><th>Meaning</th></tr>
    --- End diff --
    
    `variable` -> `Variable`


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97303/
    Test PASSed.


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow running tests in Jenkins in e...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    **[Test build #4363 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4363/testReport)** for PR 22678 at commit [`cc34da8`](https://github.com/apache/spark/commit/cc34da8c2653254974975a5a11e4bd12943e4dba).


---

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


[GitHub] spark issue #22678: [SPARK-25685][BUILD] Allow regression testing in enterpr...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22678
  
    Can one of the admins verify this patch?


---

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