You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bigtop.apache.org by evans-ye <gi...@git.apache.org> on 2018/08/09 17:16:35 UTC

[GitHub] bigtop pull request #358: BIGTOP-2101: ignite-hadoop contains an arch-depend...

Github user evans-ye commented on a diff in the pull request:

    https://github.com/apache/bigtop/pull/358#discussion_r209010677
  
    --- Diff: bigtop-packages/src/common/ignite-hadoop/do-component-build ---
    @@ -21,4 +21,30 @@ set -ex
     export MAVEN_OPTS="-Xmx512M"
     
     sed -i '/asm-all/{n;s/4.2/5.0.2/}' modules/hadoop/pom.xml
    +
    +if [ "$HOSTTYPE" != "x86_64" ] ; then
    +    # download ignite-shmem from maven central
    +    mvn dependency:get -DremoteRepositories=https://repo1.maven.org/maven2/ -DgroupId=org.gridgain -DartifactId=ignite-shmem -Dversion=1.0.0
    +    mkdir tmp-build
    +    cd tmp-build
    +    # download source jar
    +    wget https://repo1.maven.org/maven2/org/gridgain/ignite-shmem/1.0.0/ignite-shmem-1.0.0-sources.jar
    --- End diff --
    
    Any chance we can evaluate the signature for this file purely obtained from internet?
    It should be fairly easy since the version of jar is already fixed, the signature to check can be fixed here as well.


---