Skip to content

Reproducer for the .settings folder of a project is not considdered if it is a linked resource #2072

Reproducer for the .settings folder of a project is not considdered if it is a linked resource

Reproducer for the .settings folder of a project is not considdered if it is a linked resource #2072

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Verify Eclipse Platform Build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout tycho code
uses: actions/checkout@v3
with:
path: 'tycho'
- name: Checkout platform code
uses: actions/checkout@v3
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@v3
with:
java-version: |
8
11
17
distribution: 'temurin'
- name: Cache local Maven repository
uses: actions/cache@v3
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/[email protected]
with:
maven-version: 3.8.6
- 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=3.1.0-SNAPSHOT
clean verify