Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Triquetrum/Releng/New Eclipse Version"

(Details about updating the Eclipse version.)
(Check features/org.eclipse.triquetrum.workflow.rcp.feature/feature.xml)
Line 22: Line 22:
 
   cd triquetrum
 
   cd triquetrum
 
   find . -type f | xargs grep 2019-09
 
   find . -type f | xargs grep 2019-09
 +
 +
Check for Eclipse and Orbit versions in [https://github.com/eclipse/triquetrum/blob/master/features/org.eclipse.triquetrum.workflow.rcp.feature/feature.xml features/org.eclipse.triquetrum.workflow.rcp.feature/feature.xml]
  
 
== Update the version number ==
 
== Update the version number ==

Revision as of 17:38, 31 August 2020

Periodically, Eclipse gets updated and Triquetrum should be updated to the most recent version of Eclipse.

Below are the changes necessary.

See Milestone and Release Builds

Update the tpd files

  1. We use Target Platform Definition (.tpd) files to define .target files, so edit the .tpd files and change from the previous Eclipse to the new Eclipse
    1. There are two .tpd files in releng, both must be edited
      1. org.eclipse.triquetrum.python.rpc.platform.tpd and
      2. org.eclipse.triquetrum.target.platform.tpd
    2. For both files update
      1. The orbit number for the Eclipse release, see https://download.eclipse.org/tools/orbit/downloads/
      2. the Eclipse version number (ex: change 2019-09 to 2020-03)
  2. Right click on each .tpd file and select "Create Target Definition File", which will create the .target file
  3. Right click again on the org.eclipse.triquetrum.target.platform.tpd file and select "Set Target Platform" (Or open the .target file that was just created and set the target platform there)

Check for other instances

Check out a clean tree and search for the previous Eclipse:

 git clone https://github.com/eclipse/triquetrum/
 cd triquetrum
 find . -type f | xargs grep 2019-09

Check for Eclipse and Orbit versions in features/org.eclipse.triquetrum.workflow.rcp.feature/feature.xml

Update the version number

See Milestone Builds

Testing

  1. Go to the org.eclipse.triquetrum.repository/Triquetrum.product file and select Run.
    1. The new Eclipse version should appear in the splash screen
  2. Exit Eclipse and run "mvn clean verify"
  3. Test out the installer, which will be in releng/org.eclipse.triquetrum.repository/target/products
  mkdir tmp
  cd tmp
  unzip ../releng/org.eclipse.triquetrum.repository/target/products/org.eclipse.triquetrum.workflow.editor.rcp.incubation-0.3.0M1-macosx.cocoa.x86_64.zip

See Also

Back to the top