Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-02-16 12:44:33 +0000
committerSravan Kumar Lakkimsetti2017-02-16 12:44:33 +0000
commit253a2ed5aa2eb3952c611b2ca3a469b501f90808 (patch)
tree5402a6052ab3ef13b6e319eaaf5e71f120fadbaa
parent756b8a5d85511d7843d441edfb0aa04d96de38b7 (diff)
downloadeclipse.platform.releng.aggregator-253a2ed5aa2eb3952c611b2ca3a469b501f90808.tar.gz
eclipse.platform.releng.aggregator-253a2ed5aa2eb3952c611b2ca3a469b501f90808.tar.xz
eclipse.platform.releng.aggregator-253a2ed5aa2eb3952c611b2ca3a469b501f90808.zip
Bug 512281 - Add ppc64le again to download pages
Change-Id: I0e289e175c06decf4617993abc18f24c136db210 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml12
-rwxr-xr-xproduction/build-functions.shsource2
2 files changed, 14 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
index 70d55f3d2..b857a5dbb 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
@@ -27,6 +27,10 @@
name="Linux (PPC64/GTK+)"
fileName="eclipse-SDK-${BUILD_ID}-linux-gtk-ppc64.tar.gz"></platform>
<platform
+ id="SLG2PPC64LE"
+ name="Linux (PPC64LE/GTK+)"
+ fileName="eclipse-SDK-${BUILD_ID}-linux-gtk-ppc64le.tar.gz"></platform>
+ <platform
id="SMCC64"
name="Mac OSX (Mac/Cocoa/x86_64)"
fileName="eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz"></platform>
@@ -97,6 +101,10 @@
name="Linux (PPC64/GTK+)"
fileName="eclipse-platform-${BUILD_ID}-linux-gtk-ppc64.tar.gz"></platform>
<platform
+ id="PLG2PPC64LE"
+ name="Linux (PPC64LE/GTK+)"
+ fileName="eclipse-platform-${BUILD_ID}-linux-gtk-ppc64le.tar.gz"></platform>
+ <platform
id="PMCC64"
name="Mac OSX (Mac/Cocoa/x86_64)"
fileName="eclipse-platform-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz"></platform>
@@ -189,6 +197,10 @@
name="Linux (PPC64/GTK+)"
fileName="swt-${BUILD_ID}-gtk-linux-ppc64.zip"></platform>
<platform
+ id="SWTLG2PPC64LE"
+ name="Linux (PPC64LE/GTK+)"
+ fileName="swt-${BUILD_ID}-gtk-linux-ppc64le.zip"></platform>
+ <platform
id="SWTMCC64"
name="Mac OSX (Mac/Cocoa/x86_64)"
fileName="swt-${BUILD_ID}-cocoa-macosx-x86_64.zip"></platform>
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index cd7e666c3..53c9b7395 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -699,6 +699,7 @@ fn-gather-sdk ()
pushd "$TARGET_PRODUCTS"
cp org.eclipse.sdk.ide-linux.gtk.ppc.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk-ppc.tar.gz
cp org.eclipse.sdk.ide-linux.gtk.ppc64.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk-ppc64.tar.gz
+ cp org.eclipse.sdk.ide-linux.gtk.ppc64le.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk-ppc64le.tar.gz
cp org.eclipse.sdk.ide-linux.gtk.x86_64.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk-x86_64.tar.gz
cp org.eclipse.sdk.ide-linux.gtk.x86.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk.tar.gz
cp org.eclipse.sdk.ide-macosx.cocoa.x86_64.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz
@@ -739,6 +740,7 @@ fn-gather-platform ()
pushd "$TARGET_PRODUCTS"
cp org.eclipse.platform.ide-linux.gtk.ppc.tar.gz "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-linux-gtk-ppc.tar.gz
cp org.eclipse.platform.ide-linux.gtk.ppc64.tar.gz "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-linux-gtk-ppc64.tar.gz
+ cp org.eclipse.platform.ide-linux.gtk.ppc64le.tar.gz "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-linux-gtk-ppc64le.tar.gz
cp org.eclipse.platform.ide-linux.gtk.x86_64.tar.gz "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-linux-gtk-x86_64.tar.gz
cp org.eclipse.platform.ide-linux.gtk.x86.tar.gz "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-linux-gtk.tar.gz
cp org.eclipse.platform.ide-macosx.cocoa.x86_64.tar.gz "$BUILD_DIR"/eclipse-platform-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz

Back to the top