Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:How to commit code to EDT"

Line 1: Line 1:
<span style="color:#FF0000;font-size:1.875em;">'''''All committers must read and understand this page.'''''</span>
 
 
 
== Bugzilla bugs are mandatory  ==
 
== Bugzilla bugs are mandatory  ==
  

Revision as of 14:43, 6 July 2012

Bugzilla bugs are mandatory

Every change we commit MUST have a corresponding bug or enhancement in Bugzilla. Be sure the Target Milestone is set correctly.

When you resolve a bug, you MUST name the files that you changed.

CVS change comments are mandatory

You MUST enter a comment when you commit a change to CVS. The comment MUST include number of the Bugzilla bug or enhancement.

Change comments should be concise. It's best to say why you made the change, as opposed to saying what you changed.

  • Bad: "Bug 12345: Fixed."
  • Better: "Bug 12345: Added quartsToGallons() on calls to pumpGas()."
  • Best: "Bug 12345: The input to the gas pump must be in gallons, not quarts."

File encoding

We use the UTF-8 encoding for all of our files. Set your workspace's Text File Encoding preference to UTF-8.

Timing

Our Nightly builds run twice a day: at 9 AM and 9 PM Eastern U.S. time.

Which files are included in the build

Builds don't simply compile the latest code from CVS. A special file called a map file identifies the plugins to be built. There's an entry for each plugin naming the CVS tag for that plugin's code. (A CVS tag is simply a label on a particular version of a file.) The build will include the tagged files from each plugin in the map file. This means that to get a change into the build, you must commit your file to CVS, put a new tag on it AND all of the other files in the plugin, and update the map file with the new tag. That's a lot of work, which is why people have written a tool to automate most of the process.

The tool is in the org.eclipse.releng.tools plugin. You can find it by going to http://download.eclipse.org/eclipse/downloads if you use the most recent version of Eclipse, or http://archive.eclipse.org/eclipse/downloads/index.php if you use an older version of Eclipse. Click on the link for the release you're using and you'll find org.eclipse.releng.tools at the bottom of the page. To install it, unzip it into your dropins folder and restart Eclipse.

You need to check out the org.eclipse.edt.releng plugin from CVS, because it contains our map file. (Releng is short for "release engineering". Most of the files that control EDT builds are in org.eclipse.edt.releng.)

To release a change into the build follow these steps:

  1. Select all plugins that have uncommitted changes, and org.eclipse.edt.releng.
  2. Right click (while on any selected plugin) and chose Team->Synchronize with Repository. This step makes sure you are getting the latest map file and checks for any conflicts before you commit.
  3. In the Team Synchronizing perspective, commit your changes and at the same time update changes from other developers into your workspace. Perform merges if needed.
  4. Go back to the Java Perspective. If there are any errors, correct them and go back to step 1.
  5. With the same set of plugins from step 1 still selected, you are now ready to Team-Release them. Right click (while on any selected plugin) and select Team->Release....
  6. The Release wizard is displayed. Select "Specify the map project you want to use" and select org.eclipse.edt.releng. Click Next.
  7. The wizard displays the list of projects in your workspace that have entries in the map file. In the Project Selection Dialog, verify that the plugins with your changes are checked in the Project Selection dialog. Click Next.
  8. Specify a release tag for your changes. Your project(s) will be tagged with this tag and the map file will be updated with it as well. The format of a tag should be 'v' followed by a timestamp in YYYYMMDDHHMM format, using 00 to 23 for the hour. For example, the tag for changes made on December 21st 2012, at 11:59pm is v201212212359. The timestamp must be in the Eastern U.S. timezone. If you're located elsewhere, go to http://www.timeanddate.com/worldclock/city.html?n=179 for the current time in New York.
  9. The next page allows you to view the changes to the map file. Click Next.
  10. Enter a commit comment on the last page of the wizard. Click Finish.

Note: do not use Team->Release if you're making changes to org.eclipse.edt.releng or the widget projects
org.eclipse.edt.rui.dojo_*
org.eclipse.edt.rui.dojo.remote_*
org.eclipse.edt.rui.dojo.runtime.local_*
org.eclipse.edt.rui.dojo.runtime.remote_*
org.eclipse.edt.rui.dojo.widgets_*
org.eclipse.edt.rui.widgets_*

The widget projects are used to create the RUI widget libraries during the build, but they're not shipped as plugins. They're not listed in the map file. The build includes their latest code from HEAD.

Back to the top