Bump org.eclipse.platform:org.eclipse.equinox.p2.updatesite from 1.3.200 to 1.3.300 #2698
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow build the "Eclipse Platform Aggregator Build" | |
# For more information see: https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/ | |
name: Verify Eclipse Platform Aggregator Build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- 'tycho-4.0.x' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout tycho code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
path: 'tycho' | |
- name: Checkout platform code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
path: 'platform' | |
submodules: 'recursive' | |
lfs: true | |
repository: 'eclipse-platform/eclipse.platform.releng.aggregator' | |
fetch-depth: 0 | |
- name: Set up Java | |
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 | |
with: | |
java-version: | | |
8 | |
11 | |
19 | |
17 | |
distribution: 'temurin' | |
- name: Cache local Maven repository | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-verify-platform-${{ hashFiles('**/pom.xml', '**/*.target') }} | |
restore-keys: | | |
${{ runner.os }}-maven-verify-platform- | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5 | |
with: | |
maven-version: 3.9.2 | |
- name: Build Tycho | |
env: | |
JAVA_HOME: ${{ env.JAVA_HOME_17_X64 }} | |
working-directory: 'tycho' | |
run: >- | |
mvn -U -V -e -B -ntp | |
-DskipTests | |
--file pom.xml | |
-T1C | |
--global-toolchains ${{ github.workspace }}/tycho/.github/toolchains.xml | |
clean install | |
- name: Run Platform Build | |
env: | |
JAVA_HOME: ${{ env.JAVA_HOME_17_X64 }} | |
working-directory: 'platform' | |
run: >- | |
mvn -U -V -e -B -ntp | |
--global-toolchains ${{ github.workspace }}/tycho/.github/toolchains.xml | |
--file pom.xml | |
--settings ${{ github.workspace }}/tycho/.github/settings.xml | |
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 | |
-DskipTests | |
-Pbree-libs | |
-Dtycho.version=$(mvn help:evaluate -f ${{ github.workspace }}/tycho -Dexpression=project.version -q -DforceStdout) | |
clean verify |