Skip to content

Commit 5aa2d59

Browse files
committed
further polish build definitions
1 parent 31a438e commit 5aa2d59

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.github/workflows/gh-hosted-eclipse-distro-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ jobs:
121121
echo "p2_path=$p2_path" >> $GITHUB_OUTPUT
122122
- name: Upload P2 Repo Build Artifacts
123123
run: |
124-
cd eclipse-distribution/org.springframework.boot.ide.product.${{ inputs.eclipse_profile }}/target
124+
cd eclipse-distribution/org.springframework.boot.ide.product/target
125125
p2_path=${{ steps.s3-paths.outputs.p2_path }}
126126
echo "P2 path: ${p2_path}"
127127
aws s3 rm s3://$AWS_S3_BUCKET/$p2_path/ --recursive
128128
aws s3 cp ./repository/ s3://$AWS_S3_BUCKET/$p2_path/ --recursive --no-progress
129129
- name: Upload Linux Distro Build Artifacts
130130
run: |
131-
cd eclipse-distribution/org.springframework.boot.ide.product.${{ inputs.eclipse_profile }}/target/products
131+
cd eclipse-distribution/org.springframework.boot.ide.product/target/products
132132
files=`ls spring-tools-for-eclipse*linux*.tar.gz`
133133
for file in $files
134134
do
@@ -161,7 +161,7 @@ jobs:
161161
run: |
162162
echo "Uploading Win Zips and OSX tar.gz to S3 for signing..."
163163
id=${{ inputs.eclipse_profile }}-${{ inputs.build_type }}-${{ github.run_id }}
164-
aws s3 cp ${{ github.workspace }}/eclipse-distribution/org.springframework.boot.ide.product.${{ inputs.eclipse_profile }}/target/products s3://$AWS_S3_BUCKET/sts-distro-ci-temp/$id --recursive --exclude "*" --include "spring-tools-for-eclipse*win*.zip" --include "spring-tools-for-eclipse*macosx*.tar.gz" --exclude "*/*" --no-progress
164+
aws s3 cp ${{ github.workspace }}/eclipse-distribution/org.springframework.boot.ide.product/target/products s3://$AWS_S3_BUCKET/sts-distro-ci-temp/$id --recursive --exclude "*" --include "spring-tools-for-eclipse*win*.zip" --include "spring-tools-for-eclipse*macosx*.tar.gz" --exclude "*/*" --no-progress
165165
outputs:
166166
id: ${{ inputs.eclipse_profile }}-${{ inputs.build_type }}-${{ github.run_id }}
167167
dist_path: ${{ steps.s3-paths.outputs.dist_path }}

.github/workflows/release-eclipse-distro-build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,30 @@ on:
1414

1515
jobs:
1616

17-
e435-distro:
18-
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
19-
with:
20-
eclipse_profile: 'e435'
21-
build_type: 'release'
22-
p2-qualifier: 'RELEASE'
23-
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
24-
java_version: '21'
25-
secrets: inherit
17+
# e435-distro:
18+
# uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
19+
# with:
20+
# eclipse_profile: 'e435'
21+
# build_type: 'release'
22+
# p2-qualifier: 'RELEASE'
23+
# sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
24+
# java_version: '21'
25+
# secrets: inherit
2626

27-
e436-distro:
27+
e437-distro:
2828
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
2929
with:
30-
eclipse_profile: 'e436'
30+
eclipse_profile: 'e437'
3131
build_type: 'release'
3232
p2-qualifier: 'RELEASE'
3333
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
3434
java_version: '21'
3535
secrets: inherit
3636

37-
e437-distro:
37+
e438-distro:
3838
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
3939
with:
40-
eclipse_profile: 'e437'
40+
eclipse_profile: 'e438'
4141
build_type: 'release'
4242
p2-qualifier: 'RELEASE'
4343
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}

eclipse-distribution/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
</repository>
206206
</repositories>
207207
<modules>
208-
<module>org.springframework.boot.ide.product.e437</module>
208+
<module>org.springframework.boot.ide.product</module>
209209
</modules>
210210

211211
</profile>
@@ -296,7 +296,7 @@
296296
</repository>
297297
</repositories>
298298
<modules>
299-
<module>org.springframework.boot.ide.product.e437</module>
299+
<module>org.springframework.boot.ide.product</module>
300300
</modules>
301301

302302
</profile>

0 commit comments

Comments
 (0)