diff options
author | Jonah Graham | 2020-10-15 00:47:46 +0000 |
---|---|---|
committer | Jonah Graham | 2020-10-15 18:11:25 +0000 |
commit | d905d62528c25ba16f40853b358e3ad248432e30 (patch) | |
tree | e5669e05c6f921ffe9c4b4bfeffe608e3b481503 | |
parent | eeee72f8e6ae025c64d6389c6bab02ce422db368 (diff) | |
download | org.eclipse.epp.packages-d905d62528c25ba16f40853b358e3ad248432e30.tar.gz org.eclipse.epp.packages-d905d62528c25ba16f40853b358e3ad248432e30.tar.xz org.eclipse.epp.packages-d905d62528c25ba16f40853b358e3ad248432e30.zip |
Bug 567892: Publish Linux AArch64 builds for EPP
Change-Id: I3e551e72e9d1cf11de1c61eb4b7498c4178e8d5a
-rwxr-xr-x | releng/org.eclipse.epp.config/tools/promote-a-build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/releng/org.eclipse.epp.config/tools/promote-a-build.sh b/releng/org.eclipse.epp.config/tools/promote-a-build.sh index 30e5cc57..ef688fc7 100755 --- a/releng/org.eclipse.epp.config/tools/promote-a-build.sh +++ b/releng/org.eclipse.epp.config/tools/promote-a-build.sh @@ -10,7 +10,7 @@ set -x # echo all commands used for debugging purposes # RELEASE_DIR= # BUILD_NUMBER= PACKAGES="committers cpp dsl embedcpp java javascript jee modeling parallel php rcp rust scout testing" -PLATFORMS="linux.gtk.x86_64.tar.gz macosx.cocoa.x86_64.dmg win32.win32.x86_64.zip" +PLATFORMS="linux.gtk.aarch64.tar.gz linux.gtk.x86_64.tar.gz macosx.cocoa.x86_64.dmg win32.win32.x86_64.zip" ARCHIVE_URL="https://ci.eclipse.org/packaging/job/simrel.epp-tycho-build/${BUILD_NUMBER}/artifact/org.eclipse.epp.packages/archive/*zip*/archive.zip" EPP_DOWNLOADS=/home/data/httpd/download.eclipse.org/technology/epp DOWNLOADS=${EPP_DOWNLOADS}/downloads/release/${RELEASE_NAME}/ @@ -40,6 +40,7 @@ for PACKAGE in $PACKAGES; do NAME=$(echo *_eclipse-${PACKAGE}-${RELEASE_NAME}-${RELEASE_MILESTONE}-${PLATFORM}) NEWNAME=`echo ${NAME} | \ cut -d "_" -f 2- | \ + sed 's/linux\.gtk\.aarch64\_64/linux-gtk-aarch64/' | \ sed 's/linux\.gtk\.x86\_64/linux-gtk-x86\_64/' | \ sed 's/win32\.win32\.x86\_64\./win32\-x86\_64\./' | \ sed 's/macosx\.cocoa\.x86\_64/macosx\-cocoa-x86\_64/' | \ |