[GHA]: Adopt eclipse 4.35 distro

This commit is contained in:
aboyko
2024-12-09 09:31:29 -05:00
parent 7b83098124
commit c4af955878
4 changed files with 24 additions and 24 deletions

View File

@@ -102,14 +102,14 @@ jobs:
urls: ${{ steps.compute-invalid-urls.outputs.invalid_urls }}
cloudflare_zone_id: ${{ secrets.CLOUDFLARE_ZONE_ID }}
cloudflare_cache_token: ${{ secrets.CLOUDFLARE_CACHE_TOKEN }}
- name: Verify Eclipse LS Extensions on e434
- name: Verify Eclipse LS Extensions on e435
if: ${{ inputs.build_type == 'snapshot' }}
run: |
cd eclipse-language-servers
if command -v xvfb-run ; then
xvfb-run ./mvnw --batch-mode clean package -Pe434 -P${{ inputs.build_type }} -Dhttpclient.retry-max=20 -Declipse.p2.mirrors=false -Dmaven.test.skip=true -Dtycho.localArtifacts=ignore
xvfb-run ./mvnw --batch-mode clean package -Pe435 -P${{ inputs.build_type }} -Dhttpclient.retry-max=20 -Declipse.p2.mirrors=false -Dmaven.test.skip=true -Dtycho.localArtifacts=ignore
else
./mvnw --batch-mode clean package -Pe434 -P${{ inputs.build_type }} -Dhttpclient.retry-max=20 -Declipse.p2.mirrors=false -Dmaven.test.skip=true -Dtycho.localArtifacts=ignore
./mvnw --batch-mode clean package -Pe435 -P${{ inputs.build_type }} -Dhttpclient.retry-max=20 -Declipse.p2.mirrors=false -Dmaven.test.skip=true -Dtycho.localArtifacts=ignore
fi
- name: GChat spring-tools-team notification
if: ${{ inputs.build_type == 'release' }}

View File

@@ -14,16 +14,6 @@ on:
jobs:
e432-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e432'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit
e433-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
@@ -43,3 +33,13 @@ jobs:
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit
e435-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e435'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit

View File

@@ -17,7 +17,7 @@ jobs:
eclipse-ls-extension:
uses: ./.github/workflows/eclipse-ls-extensions-build.yml
with:
eclipse_profile: 'e432'
eclipse_profile: 'e433'
build_type: 'release'
skip_tests: true
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}

View File

@@ -23,20 +23,11 @@ jobs:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/eclipse-ls-extensions-build.yml
with:
eclipse_profile: 'e432'
eclipse_profile: 'e433'
build_type: 'snapshot'
skip_tests: true
secrets: inherit
e432-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e432'
build_type: 'snapshot'
java_version: '21'
secrets: inherit
e433-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
@@ -55,6 +46,15 @@ jobs:
java_version: '21'
secrets: inherit
e435-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e435'
build_type: 'snapshot'
java_version: '21'
secrets: inherit
vscode-spring-boot:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/snapshot-vscode-extension.yml