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 "WTP Release Tasks"

(Tasks for All Releases (including Service Releases))
Line 9: Line 9:
  
 
===Tasks for All Releases (including Service Releases)===
 
===Tasks for All Releases (including Service Releases)===
 +
Deliverables:
 
* March/September releases coincide with a new Java version: facets need updating  
 
* March/September releases coincide with a new Java version: facets need updating  
 
* Copy last RCx to R using [https://hudson.eclipse.org/webtools/view/webtools_CI/job/WTP-Publish/ WTP Publish] job
 
* Copy last RCx to R using [https://hudson.eclipse.org/webtools/view/webtools_CI/job/WTP-Publish/ WTP Publish] job
Line 14: Line 15:
 
* EPP packages tested, signed-off on, and webmaster notified to show them on https://www.eclipse.org/downloads/eclipse-packages
 
* EPP packages tested, signed-off on, and webmaster notified to show them on https://www.eclipse.org/downloads/eclipse-packages
 
:* Eclipse IDE for Java EE Developers: Chuck ([https://wiki.eclipse.org/J2EE_Smoke_Test_(WTP_3.9) Java EE Smoke] and also manual checks to general layout, preferences etc for changes from integrated features like m2e, oomph etc..)
 
:* Eclipse IDE for Java EE Developers: Chuck ([https://wiki.eclipse.org/J2EE_Smoke_Test_(WTP_3.9) Java EE Smoke] and also manual checks to general layout, preferences etc for changes from integrated features like m2e, oomph etc..)
* Project metadata at https://projects.eclipse.org/projects/webtools updated for the release version
+
* [http://download.eclipse.org/webtools/repository/latest/ Composite site] updated via [https://hudson.eclipse.org/webtools/view/webtools_CI/job/WTP-Publish-Repo/ WTP Publish Repo job]. Repeat for latest [http://download.eclipse.org/webtools/repository/2020-09 20xx-yy site]
* Project metadata at https://projects.eclipse.org/projects/webtools created for the next release, with the New and Noteworthy URL populated
+
* [http://download.eclipse.org/webtools/repository/latest/ Composite site] updated via [https://hudson.eclipse.org/webtools/view/webtools_CI/job/WTP-Publish-Repo/ WTP Publish Repo job]. Repeat for latest [http://download.eclipse.org/webtools/repository/2018-12 20xx-yy site]
+
 
* Marketplace listings created/updated for [https://marketplace.eclipse.org/user/nitind/listings these 3 listings] (contact Nitin D. if you want edit privileges, but try to keep the mandatory features to a minimum)
 
* Marketplace listings created/updated for [https://marketplace.eclipse.org/user/nitind/listings these 3 listings] (contact Nitin D. if you want edit privileges, but try to keep the mandatory features to a minimum)
 
* [[WTP_FAQ]] installation instructions updated (add versions/numbers/update sites)
 
* [[WTP_FAQ]] installation instructions updated (add versions/numbers/update sites)
Line 51: Line 50:
 
* Babel repo/branch set/updated for release
 
* Babel repo/branch set/updated for release
 
* Version value created in Bugzilla
 
* Version value created in Bugzilla
 +
* Project metadata at https://projects.eclipse.org/projects/webtools updated for the release version
 +
* Project metadata at https://projects.eclipse.org/projects/webtools created for the next release, with the New and Noteworthy URL populated
  
  

Revision as of 12:43, 23 November 2020

For each WTP release, there are a few bookkeeping tasks unrelated to planning, development, and building, that also need tending to.

They should be recorded here so they're not forgotten. This is intended as a living document.

Tasks for Major and Minor Releases

  • The release should be tagged in all non-releng repositories.
  • Maintenance branch may created for future adopter patch builds. Main development will continue in master for the next quarterly simultaneous release.
  • A New Help for Old Friends page created, if required

Tasks for All Releases (including Service Releases)

Deliverables:

  • Eclipse IDE for Java EE Developers: Chuck (Java EE Smoke and also manual checks to general layout, preferences etc for changes from integrated features like m2e, oomph etc..)
  • download.eclipse.org, archive.eclipse.org, build.eclipse.org Site Updates:
  • Update releng files w/ new versions/dependencies:

Project Lead Tasks

Each project lead or a designated Committer should perform these tasks for every release.


Tagging script

1. Check out the webtools.releng.aggregator project & make sure you're up to date in all the submodules. Commit any updates.

2. Check out all the projects listed below, then:

 TAG=R3_19
 for d in */; do echo $d; cd $d; git pull origin master; git tag ${TAG}; git push origin ${TAG}; cd ..; echo; done

Projects to tag include:

 webtools.releng.aggregator/
   webtools.releng/
   webtools.common/
   webtools.dali/
   webtools.javaee/
   webtools.jsdt/
   webtools.jsf/
   webtools.servertools/
   webtools.sourceediting/
   webtools.webservices/

Not specific to WTP

  • Remind Nitin to update the IRC channel topic to reflect the new release
  • Make sure Eclipse/Installation reflects the current/new Eclipse Project release
  • Make sure SimRel points to the current or next release

Back to the top