Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-06-06 07:01:41 +0000
committerAlexander Kurtakov2018-06-06 07:01:41 +0000
commitb705943c401c6bb543f89e93f1d5008e944cce23 (patch)
tree72339abd4b635f4bf0e2f5adeb82f7a01fe2b344 /production
parent64fcc86cce73630ca3e3217d7342e48d6f7ed22d (diff)
downloadeclipse.platform.releng.aggregator-b705943c401c6bb543f89e93f1d5008e944cce23.tar.gz
eclipse.platform.releng.aggregator-b705943c401c6bb543f89e93f1d5008e944cce23.tar.xz
eclipse.platform.releng.aggregator-b705943c401c6bb543f89e93f1d5008e944cce23.zip
Bug 518669 - Drop support for Linux ppc64 in 4.9
Removed ppc64 BE build in some configs replaced it with ppc64le as it was missing (e.g. publishing equinox launcher). Change-Id: Ib397bf23377ba17f8a70a4fbe541c3460e1814cf Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'production')
-rwxr-xr-xproduction/build-functions.shsource2
-rwxr-xr-xproduction/checkConfigIIUs.sh1
-rw-r--r--production/testScripts/configuration/sdk.tests/testScripts/test.xml4
3 files changed, 2 insertions, 5 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index a85684df1..0bd567afa 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -681,7 +681,6 @@ fn-gather-sdk ()
if [[ -d "$TARGET_PRODUCTS" ]]
then
pushd "$TARGET_PRODUCTS"
- 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
@@ -720,7 +719,6 @@ fn-gather-platform ()
if [[ -d "$TARGET_PRODUCTS" ]]
then
pushd "$TARGET_PRODUCTS"
- 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
diff --git a/production/checkConfigIIUs.sh b/production/checkConfigIIUs.sh
index 818d95ad6..5af9704d5 100755
--- a/production/checkConfigIIUs.sh
+++ b/production/checkConfigIIUs.sh
@@ -36,7 +36,6 @@ ECLIPSE_BUILD_DIR="${AGGR_DIR}/eclipse.platform.releng.tychoeclipsebuilder"
declare -a PLATFORMS=( \
cocoa.macosx.x86_64 \
-gtk.linux.ppc64 \
gtk.linux.ppc64le \
gtk.linux.x86 \
gtk.linux.x86_64 \
diff --git a/production/testScripts/configuration/sdk.tests/testScripts/test.xml b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
index 74922c966..421c54f9a 100644
--- a/production/testScripts/configuration/sdk.tests/testScripts/test.xml
+++ b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
@@ -1009,7 +1009,7 @@
</condition>
<condition
property="runtimeArchive"
- value="eclipse-SDK-${buildIdToUse}-linux-gtk-ppc64.tar.gz">
+ value="eclipse-SDK-${buildIdToUse}-linux-gtk-ppc64le.tar.gz">
<and>
<equals
arg1="${os}"
@@ -1019,7 +1019,7 @@
arg2="gtk" />
<equals
arg1="${arch}"
- arg2="ppc64" />
+ arg2="ppc64le" />
</and>
</condition>
<condition

Back to the top