You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by se...@apache.org on 2021/07/06 04:08:03 UTC

[bigtop] branch master updated: BIGTOP-3565. Fix build failure of Alluxio on Cent OS 7 ppc64le. (#794)

This is an automated email from the ASF dual-hosted git repository.

sekikn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new 77967d9  BIGTOP-3565. Fix build failure of Alluxio on Cent OS 7 ppc64le. (#794)
77967d9 is described below

commit 77967d9c868b6bf74c154480d2cf38636f7012b7
Author: Masatake Iwasaki <iw...@apache.org>
AuthorDate: Tue Jul 6 13:07:55 2021 +0900

    BIGTOP-3565. Fix build failure of Alluxio on Cent OS 7 ppc64le. (#794)
---
 bigtop-packages/src/common/alluxio/do-component-build | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/bigtop-packages/src/common/alluxio/do-component-build b/bigtop-packages/src/common/alluxio/do-component-build
index f6ba380..df4925f 100644
--- a/bigtop-packages/src/common/alluxio/do-component-build
+++ b/bigtop-packages/src/common/alluxio/do-component-build
@@ -18,4 +18,9 @@ set -ex
 
 . `dirname $0`/bigtop.bom
 
-mvn clean install -DskipTests -Dhadoop.version=3.2.2 -Phadoop-3 -Pyarn "$@"
+if [ $HOSTTYPE = "powerpc64le" ] ; then
+  sed -i "s|<nodeVersion>v10.11.0</nodeVersion>|<nodeVersion>v12.22.1</nodeVersion>|" webui/pom.xml
+  sed -i "s|<npmVersion>6.4.1</npmVersion>|<npmVersion>6.14.7</npmVersion>|" webui/pom.xml
+fi
+
+mvn clean install -DskipTests -Dhadoop.version=${HADOOP_VERSION} -Phadoop-3 -Pyarn "$@"