Skip to content

Commit

Permalink
[GHA]: Adopt eclipse 4.35 distro
Browse files Browse the repository at this point in the history
  • Loading branch information
BoykoAlex committed Dec 9, 2024
1 parent 7b83098 commit c4af955
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/eclipse-ls-extensions-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-eclipse-distro-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,30 @@ on:

jobs:

e432-distro:
e433-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e432'
eclipse_profile: 'e433'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit

e433-distro:
e434-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e433'
eclipse_profile: 'e434'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit

e434-distro:
e435-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e434'
eclipse_profile: 'e435'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-eclipse-ls-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/snapshot-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,34 +23,34 @@ 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:
e433-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e432'
eclipse_profile: 'e433'
build_type: 'snapshot'
java_version: '21'
secrets: inherit

e433-distro:
e434-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e433'
eclipse_profile: 'e434'
build_type: 'snapshot'
java_version: '21'
secrets: inherit

e434-distro:
e435-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e434'
eclipse_profile: 'e435'
build_type: 'snapshot'
java_version: '21'
secrets: inherit
Expand Down

0 comments on commit c4af955

Please sign in to comment.