You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by sr...@apache.org on 2017/01/04 09:12:12 UTC

tez git commit: TEZ-3555. Tez UI: Build is failing in RHEL6 (sree)

Repository: tez
Updated Branches:
  refs/heads/master 36f2eead3 -> c00c63c67


TEZ-3555. Tez UI: Build is failing in RHEL6 (sree)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/c00c63c6
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/c00c63c6
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/c00c63c6

Branch: refs/heads/master
Commit: c00c63c67790492c0417ff659ff90bbf88a076c8
Parents: 36f2eea
Author: Sreenath Somarajapuram <sr...@apache.org>
Authored: Wed Jan 4 14:40:46 2017 +0530
Committer: Sreenath Somarajapuram <sr...@apache.org>
Committed: Wed Jan 4 14:40:46 2017 +0530

----------------------------------------------------------------------
 BUILDING.txt   |  5 +++++
 CHANGES.txt    |  1 +
 tez-ui/pom.xml | 10 ++++++++++
 3 files changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/c00c63c6/BUILDING.txt
----------------------------------------------------------------------
diff --git a/BUILDING.txt b/BUILDING.txt
index 5e8a30b..c62f249 100644
--- a/BUILDING.txt
+++ b/BUILDING.txt
@@ -103,6 +103,11 @@ Issue with PhantomJS on building in PowerPC.
  manually install it. Please refer to https://github.com/ibmsoe/phantomjs-1/blob/v2.1.1-ppc64/README.md
  and install it globally for the build to work.
 
+Issue with PhantomJS on building in RHEL 6 - Latest versions of Node JS doesn't work well with RHEL 6.
+Please use the following profile to build with an older version of Node.
+
+ $ mvn package -PuseNode012
+
 ----------------------------------------------------------------------------------
 Protocol Buffer compiler:
 

http://git-wip-us.apache.org/repos/asf/tez/blob/c00c63c6/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 4f343c4..2b93668 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -153,6 +153,7 @@ ALL CHANGES:
   TEZ-3470. Tez UI: Make the build work in IBM PPC
   TEZ-3502. Tez UI: Search in All DAGs page doesn't work with numeric values
   TEZ-3546. Tez UI: On sorting asc - Not Available must be at the top
+  TEZ-3555. Tez UI: Build is failing in RHEL6
 
 Release 0.8.5: Unreleased
 

http://git-wip-us.apache.org/repos/asf/tez/blob/c00c63c6/tez-ui/pom.xml
----------------------------------------------------------------------
diff --git a/tez-ui/pom.xml b/tez-ui/pom.xml
index e7be666..71dd13b 100644
--- a/tez-ui/pom.xml
+++ b/tez-ui/pom.xml
@@ -36,6 +36,16 @@
 
   <profiles>
     <profile>
+      <id>useNode012</id>
+      <activation>
+        <activeByDefault>false</activeByDefault>
+      </activation>
+      <properties>
+        <nodeVersion>v0.12.18</nodeVersion>
+        <npmVersion>2.15.11</npmVersion>
+      </properties>
+    </profile>
+    <profile>
       <id>cleanUICache</id>
       <activation>
         <activeByDefault>false</activeByDefault>