GHA for e432 distro

This commit is contained in:
aboyko
2024-03-22 10:29:05 -04:00
parent 63a99baff8
commit ccc3e9fa92
3 changed files with 15 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ on:
eclipse_profile:
description: Eclipse profile 'e429' etc
required: false
default: 'e429'
default: 'e430'
type: string
skip_tests:
description: skip ls tests execution
@@ -113,14 +113,14 @@ jobs:
run: |
invalid_urls=`aws s3 ls s3://tools-spring-io/${{ steps.upload-p2-to-akamai.outputs.p2_path }}/ --recursive | awk '{$1=$2=$3=""; print $0}' | sed -e 's/^[ \t]*/https:\/\/cdn.spring.io\/spring-tools\//' | paste -sd' ' -`
echo "invalid_urls=$invalid_urls" >> $GITHUB_OUTPUT
- name: Verify Eclipse LS Extensions on e431
- name: Verify Eclipse LS Extensions on e432
if: ${{ inputs.build_type == 'snapshot' }}
run: |
cd eclipse-language-servers
if command -v xvfb-run ; then
xvfb-run ./mvnw --batch-mode clean package -Pe431 -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 -Pe432 -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 -Pe431 -P${{ inputs.build_type }} -Dhttpclient.retry-max=20 -Declipse.p2.mirrors=false -Dmaven.test.skip=true -Dtycho.localArtifacts=ignore
./mvnw --batch-mode clean package -Pe432 -P${{ inputs.build_type }} -Dhttpclient.retry-max=20 -Declipse.p2.mirrors=false -Dmaven.test.skip=true -Dtycho.localArtifacts=ignore
fi
purge_cache:

View File

@@ -14,15 +14,6 @@ on:
jobs:
e429-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e429'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
secrets: inherit
e430-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
@@ -41,3 +32,11 @@ jobs:
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
secrets: inherit
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 }}
secrets: inherit

View File

@@ -1,7 +1,7 @@
name: Snapshot - 4.29 Eclipse STS Distribution Build
name: Snapshot - 4.32 Eclipse STS Distribution Build
concurrency:
group: e429-snapshot
group: e432-snapshot
cancel-in-progress: true
on:
@@ -17,6 +17,6 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e429'
eclipse_profile: 'e432'
build_type: 'snapshot'
secrets: inherit