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 "Debug/DebugRelEng"

(Releasing Bundles)
(Releasing Bundles)
 
(16 intermediate revisions by the same user not shown)
Line 9: Line 9:
 
#you have commit rights to all of the [[#Bundle Needed To Release|required bundles]]
 
#you have commit rights to all of the [[#Bundle Needed To Release|required bundles]]
 
#you have no pending changes in your RelEng workspace
 
#you have no pending changes in your RelEng workspace
#the RelEng tools are [[#Installing The RelEng Tools|installed]] in your host Eclipse
+
#you have EGit and/or Git on the command line
 
+
There is also another pretty good write-up on how to release bundles on the [http://eclipsesource.com/blogs/tag/releng/ EclipseSource blog]
+
  
 
== Bundles Needed To Release ==
 
== Bundles Needed To Release ==
  
The bundles that must be released each week can be found in the [http://wiki.eclipse.org/images/c/c4/Debug.psf project set file].
+
Now that Platform / JDT debug in is Git, it is much easier to get the required bundles. You simply have to check out the following two repos:
 +
#[http://git.eclipse.org/c/jdt/eclipse.jdt.debug.git/ JDT Debug]
 +
#[http://git.eclipse.org/c/platform/eclipse.platform.debug.git/ Platform Debug]
  
They include:
+
There is an additional required bundle that contains all of the map files that must be updated, which is: <code>org.eclipse.releng</code> and can be
<pre>
+
found in the [http://git.eclipse.org/c/platform/eclipse.platform.releng.maps.git/ RelEng maps] Git repo.
org.eclipse.core.variables
+
org.eclipse.debug.core
+
org.eclipse.debug.examples.core
+
org.eclipse.debug.examples.ui
+
org.eclipse.debug.tests
+
org.eclipse.debug.ui
+
org.eclipse.jdt.debug
+
org.eclipse.jdt.debug.tests
+
org.eclipse.jdt.debug.ui
+
org.eclipse.jdt.launching
+
org.eclipse.jdt.launching.macosx
+
org.eclipse.jdt.launching.ui.macosx
+
org.eclipse.ui.console
+
</pre>
+
  
There is an additional required bundle that contains all of the map files that must be updated, which is: <code>org.eclipse.releng</code>
+
== Releasing Bundles ==
  
This bundle is available in the default Eclipse CVS repository:
+
=== Using EGit ===
<pre>
+
dev.eclipse.org/cvsroot/eclipse/org.eclipse.releng
+
</pre>
+
  
== The RelEng Tools ==
+
With the EGit tools installed and working, <em>and</em> all of the [[#Bundles Needed To Release|required Git repos]] up to date; you must start the '''Tag..''' wizard <em>for each repo</em> by right-clicking on one of the projects from the repo and using the '''Team > Advanced > Tag...''' command.
  
The key to being able to release all of the bundle is to use the Eclipse RelEng tools.
+
In the next step we create the new tag using the '''Tag''' wizard, which looks like the following:
  
These tools do not come installed in Eclipse by default, but can easily be installed from any of the release update sites. For example the [http://download.eclipse.org/releases/indigo Indigo update site].
+
<gallery widths="280px" heights="290px" perrow="1">
 +
Image:Tag_wizard.png|The tag wizard
 +
</gallery>
  
Alternatively download it as an archive. The link to the archive at the bottom of any build page. Then select Help > Install New Software > Add Site > Archive. After adding archive, select it and make sure to uncheck "Group items by category".
+
In the '''Tag name''' field, enter the new tag - making sure to follow the rules outlined in the [[#Choosing_tags]] section - and add a comment why you are adding a new tag. After pressing Ok in the tag wizard, we have successfully added the new tag to our local repo. Now we have to make sure that the new tag makes it to the remote repo. To do this we want to use the '''Team > Remote > Push...''' command, not the '''Team > Push to Upstream''' command. The reason we want to use the latter command is that we need to have finite control over only pushing the one new tag, and not pushing all of the tags that might be in our local repo.
  
To confirm that the RelEng tools have successfully been installed simply select a debug project in your workspace, right-click, select the <code>Team</code> fly-out menu and look for the <code>Release...</code> command. If the <code>Release...</code> command is present the tools are installed and ready to go.
+
To ensure we only get the tag we want, in the '''Push...''' wizard we enter the name of the tag in the '''Source ref''' field and hit '''Ctrl+Space''' (content-assist) to fill in the correct value in the '''Destination ref''' field like the following:
  
== Releasing Bundles ==
+
<gallery widths="280px" heights="290px" perrow="1">
 
+
Image:Push_tag_picking.png|The push wizard source and destination ref fields
<gallery> widths="300px" heights="150px" perrow="1">
+
Image:Debug_map_selection.png|The map project selection page
+
 
</gallery>
 
</gallery>
  
<gallery> widths="300px" heights="150px" perrow="1">
+
After the '''Source ref''' and '''Destination ref''' values are entered, hit the '''Add Spec''' button and then '''Next'''. After the test push completes successfully you can press '''Finish''' to push the new tag to the remote repo. At this point it is good to go to the repo web site and double-check to makes sure the push was successful.
Image:Debug_project_selection.png|The project selection page
+
</gallery>
+
  
<gallery> widths="300px" heights="150px" perrow="1">
+
With the new tag added to the repo, we have to update the map file with the new tag. For platform / JDT debug the map file to be edited is in the following workspace location: <code>org.eclipse.releng/maps/jdtdebug.map</code>.
Image:Debug_project_changes.png|The project changes page
+
</gallery>
+
  
<gallery> widths="300px" heights="150px" perrow="1">
+
There are two ways we can update the map:
Image:Debug_build_notes.png|The notes for build changes page
+
*we can change the tag for each entry to be the new tag
</gallery>
+
*we can check the repo webpage(s) to see if there have been any commits since the last tagging and only update the projects that have changed
  
<gallery> widths="300px" heights="150px" perrow="1">
+
Once the map file is updated, commit it to your local repo and then push the changes to the remote repo. Again, it is good to double-check on the repo web pae to ensure the push was successful.
Image:Debug_tag_selection.png|The release tag page
+
</gallery>
+
  
<gallery> widths="300px" heights="150px" perrow="1">
+
=== Using the command line ===
Image:Debug_map_file_changes.png|The map file changes page
+
</gallery>
+
  
<gallery> widths="300px" heights="150px" perrow="1">
+
If you have Git available form the command line you can also release to the build.
Image:Debug_commit_comment.png‎|The commit comment page
+
</gallery>
+
  
=== Map Files ===
+
The first step is to create a new tag for each repo by doing the following:
 +
#change directory to the repo you wish to tag
 +
#run <pre>$ git tag -a <your_new_tag_name> -m <your_new_tag_comment></pre>
 +
#push the new tag to the remote repo <pre>$ git push master <your_new_tag_name></pre>
 +
 
 +
With the new tag added to the repo, we have to update the map file with the new tag. For platform / JDT debug the map file to be edited is in the following location: <code><path_to_the_eclipse.platform.releng.maps_git_repo>org.eclipse.releng/maps/jdtdebug.map</code>.
 +
 
 +
There are two ways we can update the map:
 +
*we can change the tag for each entry to be the new tag
 +
*we can check the repo webpage(s) to see if there have been any commits since the last tagging and only update the projects that have changed
 +
 
 +
Once the map file is updated, commit it to your local repo and then push the changes to the remote repo. Again, it is good to double-check on the repo web page to ensure the push was successful.
  
 
=== Choosing Tags ===  
 
=== Choosing Tags ===  
 +
Other than making sure you are releasing all of the correct changes, selecting the ''right'' tag is probably the most important step in the process. Typically, we create tags with the following format:
 +
<pre>v<year><month><day>-<hour><minute></pre>
 +
 +
There are exceptions to this general format as outlined below.
  
=== Build Notes ===
+
Exceptions:
 +
#if you have to release the same bundle more than once on the same day you '''must''' make sure you add the time postfix to the tag. For example, say you released the bundles under the tag <code>v20110511</code> at noon, but then later in the day a new fix was added and you had to re-tag. If you already use the standard format and always include the time, everything will be fine, otherwise you have to ensure the time postfix is present - i.e. you had to re-release at 12:30 on the same day, the new tag format would be: <code>v20110511-1230</code>.
 +
#if you need to tag the bundles for a particular release for a non-MASTER branch. In this case it is the de-facto standard for debug to add a postfix about the branch to the tag name. For example if you had to release the bundles in the <code>R3_7_maintenance</code> branch you would use something like: <code>v20110511-1200_r372</code>.

Latest revision as of 14:31, 15 November 2011

Platform Debug
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source
JDT Debug
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

Introduction

Being part of the Eclipse platform requires that for each I-build in the Eclipse build schedule all of the debug plugins must be released to the build.

This process only has a few requirements:

  1. you have all of the required bundles
  2. you have commit rights to all of the required bundles
  3. you have no pending changes in your RelEng workspace
  4. you have EGit and/or Git on the command line

Bundles Needed To Release

Now that Platform / JDT debug in is Git, it is much easier to get the required bundles. You simply have to check out the following two repos:

  1. JDT Debug
  2. Platform Debug

There is an additional required bundle that contains all of the map files that must be updated, which is: org.eclipse.releng and can be found in the RelEng maps Git repo.

Releasing Bundles

Using EGit

With the EGit tools installed and working, and all of the required Git repos up to date; you must start the Tag.. wizard for each repo by right-clicking on one of the projects from the repo and using the Team > Advanced > Tag... command.

In the next step we create the new tag using the Tag wizard, which looks like the following:

In the Tag name field, enter the new tag - making sure to follow the rules outlined in the #Choosing_tags section - and add a comment why you are adding a new tag. After pressing Ok in the tag wizard, we have successfully added the new tag to our local repo. Now we have to make sure that the new tag makes it to the remote repo. To do this we want to use the Team > Remote > Push... command, not the Team > Push to Upstream command. The reason we want to use the latter command is that we need to have finite control over only pushing the one new tag, and not pushing all of the tags that might be in our local repo.

To ensure we only get the tag we want, in the Push... wizard we enter the name of the tag in the Source ref field and hit Ctrl+Space (content-assist) to fill in the correct value in the Destination ref field like the following:

After the Source ref and Destination ref values are entered, hit the Add Spec button and then Next. After the test push completes successfully you can press Finish to push the new tag to the remote repo. At this point it is good to go to the repo web site and double-check to makes sure the push was successful.

With the new tag added to the repo, we have to update the map file with the new tag. For platform / JDT debug the map file to be edited is in the following workspace location: org.eclipse.releng/maps/jdtdebug.map.

There are two ways we can update the map:

  • we can change the tag for each entry to be the new tag
  • we can check the repo webpage(s) to see if there have been any commits since the last tagging and only update the projects that have changed

Once the map file is updated, commit it to your local repo and then push the changes to the remote repo. Again, it is good to double-check on the repo web pae to ensure the push was successful.

Using the command line

If you have Git available form the command line you can also release to the build.

The first step is to create a new tag for each repo by doing the following:

  1. change directory to the repo you wish to tag
  2. run
    $ git tag -a <your_new_tag_name> -m <your_new_tag_comment>
  3. push the new tag to the remote repo
    $ git push master <your_new_tag_name>

With the new tag added to the repo, we have to update the map file with the new tag. For platform / JDT debug the map file to be edited is in the following location: <path_to_the_eclipse.platform.releng.maps_git_repo>org.eclipse.releng/maps/jdtdebug.map.

There are two ways we can update the map:

  • we can change the tag for each entry to be the new tag
  • we can check the repo webpage(s) to see if there have been any commits since the last tagging and only update the projects that have changed

Once the map file is updated, commit it to your local repo and then push the changes to the remote repo. Again, it is good to double-check on the repo web page to ensure the push was successful.

Choosing Tags

Other than making sure you are releasing all of the correct changes, selecting the right tag is probably the most important step in the process. Typically, we create tags with the following format:

v<year><month><day>-<hour><minute>

There are exceptions to this general format as outlined below.

Exceptions:

  1. if you have to release the same bundle more than once on the same day you must make sure you add the time postfix to the tag. For example, say you released the bundles under the tag v20110511 at noon, but then later in the day a new fix was added and you had to re-tag. If you already use the standard format and always include the time, everything will be fine, otherwise you have to ensure the time postfix is present - i.e. you had to re-release at 12:30 on the same day, the new tag format would be: v20110511-1230.
  2. if you need to tag the bundles for a particular release for a non-MASTER branch. In this case it is the de-facto standard for debug to add a postfix about the branch to the tag name. For example if you had to release the bundles in the R3_7_maintenance branch you would use something like: v20110511-1200_r372.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.