Skip to content

Commit

Permalink
Support eclipse 2024-12 (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
adangel authored Dec 10, 2024
1 parent b984b06 commit 59a4b72
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 57 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
# verify build on one node before multiple builds on different os are started
fail-fast-build:
name: verify (ubuntu-latest, 2024-09)
name: verify (ubuntu-latest, 2024-12)
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build
uses: ./.github/actions/build
with:
targetPlatform: 2024-09
targetPlatform: 2024-12
deploy: true
pmdCiSecretPassphrase: ${{ secrets.PMD_CI_SECRET_PASSPHRASE }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: screenshots-ubuntu-latest-2024-09
name: screenshots-ubuntu-latest-2024-12
path: net.sourceforge.pmd.eclipse.plugin.test/screenshots
if-no-files-found: ignore

Expand All @@ -51,19 +51,19 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
targetPlatform: [ 2024-09 ]
targetPlatform: [ 2024-12 ]
exclude:
# exclude the fail-fast-build, which already ran
- os: ubuntu-latest
targetPlatform: 2024-09
targetPlatform: 2024-12
# run other target platforms only on linux
include:
- os: ubuntu-latest
targetPlatform: 2024-09
- os: ubuntu-latest
targetPlatform: 2024-06
- os: ubuntu-latest
targetPlatform: 2024-03
- os: ubuntu-latest
targetPlatform: 2023-12
fail-fast: true

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 2 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Eclipse Update Site:
This is a minor release.

### New and noteworthy
* Support for Eclipse 2024-12 added
* Support for Eclipse 2023-12 removed

### Fixed Issues

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</modules>

<properties>
<target.platform>2024-09</target.platform>
<target.platform>2024-12</target.platform>

<java.version>1.8</java.version>
<!-- https://github.com/eclipse/tycho/blob/master/RELEASE_NOTES.md and https://github.com/eclipse-tycho/tycho/releases -->
Expand Down
28 changes: 0 additions & 28 deletions target-platforms/2023-12.target

This file was deleted.

21 changes: 0 additions & 21 deletions target-platforms/2023-12.tpd

This file was deleted.

21 changes: 21 additions & 0 deletions target-platforms/2024-12.target
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde?>
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
<target name="2024-12 (4.34)" sequenceNumber="1733594957">
<locations>
<location includeMode="planner" includeAllPlatforms="false" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.platform.feature.group" version="4.34.0.v20241120-1800"/>
<unit id="org.eclipse.jdt.feature.group" version="3.20.0.v20241120-1800"/>
<unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.36.0.v202409282004"/>
<unit id="org.eclipse.pde.feature.group" version="3.16.100.v20241120-1800"/>
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="4.2.1.202406141605"/>
<unit id="org.eclipse.swtbot.feature.group" version="4.2.1.202406141605"/>
<unit id="org.eclipse.swtbot.ide.feature.group" version="4.2.1.202406141605"/>
<unit id="org.eclipse.swtbot.generator.feature.feature.group" version="4.2.1.202406141605"/>
<unit id="org.junit" version="4.13.2.v20240929-1000"/>
<unit id="org.junit.source" version="4.13.2.v20240929-1000"/>
<repository location="https://download.eclipse.org/releases/2024-12/"/>
</location>
</locations>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
</target>
14 changes: 14 additions & 0 deletions target-platforms/2024-12.tpd
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
target "2024-12 (4.34)"
with source requirements environment JavaSE-21
location "https://download.eclipse.org/releases/2024-12/" {
org.eclipse.platform.feature.group
org.eclipse.jdt.feature.group
org.eclipse.wst.xml_core.feature.feature.group
org.eclipse.pde.feature.group
org.eclipse.swtbot.eclipse.feature.group
org.eclipse.swtbot.feature.group
org.eclipse.swtbot.ide.feature.group
org.eclipse.swtbot.generator.feature.feature.group
org.junit
org.junit.source
}

0 comments on commit 59a4b72

Please sign in to comment.