You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bigtop.apache.org by CZWin32768 <gi...@git.apache.org> on 2017/12/01 08:24:12 UTC

[GitHub] bigtop pull request #314: BIGTOP-2954: fix bug of do-component-build which m...

GitHub user CZWin32768 opened a pull request:

    https://github.com/apache/bigtop/pull/314

    BIGTOP-2954: fix bug of do-component-build which may cause spark build failure

    The mvn command in the last line of spark/do-component-build uses "mvn", but here should be "./build/mvn".
    make-distribution.sh will only run "mvn clean package", so in order to get the Spark packages installed in the local Maven repository (or to run the tests), we need to run "mvn install" again.
    make-distribution.sh uses "./build/mvn" but in do-component-build "mvn" is used, which may be in wrong version.
    It will cause build failure when a mvn of old version was set in PATH.
    This may cause that "mvn install" build failure after "mvn clean package" build successfully.

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

    $ git pull https://github.com/CZWin32768/bigtop master

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

    https://github.com/apache/bigtop/pull/314.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 #314
    
----
commit 75ad33ede84db34d6a8511153b9694345e5e15f2
Author: Zewen Chi <cz...@sina.com>
Date:   2017-12-01T08:22:03Z

    BIGTOP-2954: fix bug of do-component-build which may cause spark build failure

----


---

[GitHub] bigtop pull request #314: BIGTOP-2954: fix bug of do-component-build which m...

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

    https://github.com/apache/bigtop/pull/314


---