Skip to content

Commit 1b74fcd

Browse files
committed
[GHA] Debug inclusion of JustJ into aggregate distro update sites
1 parent 71ecbec commit 1b74fcd

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/scripts/generate-composite-site-files.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ val=$1
22
url=$2
33
justj21=$3
44

5+
echo "Include JustJ bit: ${justj21}"
6+
57
rm -f ./compositeArtifacts.xml
68
rm -f ./compositeContent.xml
79
rm -f ./p2.index
@@ -13,7 +15,7 @@ echo " type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArt
1315
echo " <properties size='1'>" >> compositeArtifacts.xml
1416
echo " <property name='p2.timestamp' value='${val}'/>" >> compositeArtifacts.xml
1517
echo " </properties>" >> compositeArtifacts.xml
16-
if [ "${jusstj21}" = true ] ; then
18+
if [ "${justj21}" = true ] ; then
1719
echo " <children size='2'>" >> compositeArtifacts.xml
1820
echo " <child location='${url}'/>" >> compositeArtifacts.xml
1921
echo " <child location='https://download.eclipse.org/justj/jres/21/updates/release/latest/'/>" >> compositeArtifacts.xml
@@ -32,7 +34,7 @@ echo " type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMet
3234
echo " <properties size='1'>" >> compositeContent.xml
3335
echo " <property name='p2.timestamp' value='${val}'/>" >> compositeContent.xml
3436
echo " </properties>" >> compositeContent.xml
35-
if [ "${jusstj21}" = true ] ; then
37+
if [ "${justj21}" = true ] ; then
3638
echo " <children size='2'>" >> compositeContent.xml
3739
echo " <child location='${url}'/>" >> compositeContent.xml
3840
echo " <child location='https://download.eclipse.org/justj/jres/21/updates/release/latest/'/>" >> compositeContent.xml

.github/workflows/aggregate-distro-update-sites.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
run: |
4545
echo "Akamai S3 Aggregate Update Sites Creation..."
4646
dirs=`aws s3 ls s3://tools-spring-io/release/TOOLS/sts4/update/${{ inputs.version }}/`
47+
echo "${dirs}"
4748
pattern='^e[0-9]+.[0-9]+/$'
4849
invalid_urls=""
4950
for dir in $dirs

0 commit comments

Comments
 (0)