Skip to content

Commit

Permalink
[569111] Provide Installer also for aarch64
Browse files Browse the repository at this point in the history
https://bugs.eclipse.org/bugs/show_bug.cgi?id=569111

Use aarch64 as the bitness value in the installer-index.xml
  • Loading branch information
merks committed Nov 24, 2020
1 parent 8ce2937 commit 4d0ba4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion releng/org.eclipse.oomph.releng/hudson/product-index.sh
Expand Up @@ -24,7 +24,7 @@ for i in $named_releases $numbered_releases; do
cd $root/$i/$j
#echo $i/$j
#ls eclipse-inst*
for b in 32 64; do
for b in 32 64 aarch64; do
for os in win mac linux; do
for jre in "true" "false"; do
if [ "$jre" == "false" ]; then
Expand All @@ -37,6 +37,8 @@ for i in $named_releases $numbered_releases; do
candidate=$prefix$os$b.exe
elif [ -f $prefix$os$b.dmg ]; then
candidate=$prefix$os$b.dmg
elif [ -f $prefix$os-$b.tar.gz ]; then
candidate=$prefix$os-$b.tar.gz
elif [ -f $prefix$os$b.tar.gz ]; then
if [ "$os" == "mac" -a -f eclipse-inst-$os$b.dmg ]; then
# Don't include mac *.tar.gz if there is a *.dmg
Expand Down

0 comments on commit 4d0ba4d

Please sign in to comment.