VTK Release Procedures: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(New page: == Tagging and Creating a Branch == This example uses VTK-5-4 in the text. Adjust accordingly for whatever release you are doing... When creating a new branch for a VTK release: * Elim...)
 
No edit summary
Line 1: Line 1:
== Tagging and Creating a Branch ==
== Tagging and Creating a Branch ==


Line 28: Line 27:
   cd ../VTKData
   cd ../VTKData
   cvs tag -b VTK-5-4
   cvs tag -b VTK-5-4
== Dashboards ==
* Duplicate all the existing dashboard scripts running against the previous branch and edit them to run against the new branch.
* Go to each dashboard machine and edit its crontab or scheduled tasks to run the new scripts
* Make sure there is a source and data tree for each script in its new location (a subdirectory named for the branch)
* On CDash, make a new group for Nightly branch submissions
* Once all machines are submitting on the new branch, and the previous branch has no more submissions, delete the CDash group for the previous branch

Revision as of 15:18, 13 March 2009

Tagging and Creating a Branch

This example uses VTK-5-4 in the text. Adjust accordingly for whatever release you are doing...

When creating a new branch for a VTK release:

  • Eliminate write access to VTK and VTKData CVS HEAD for everyone except yourself
  • Make a "branch point" non-branch tag first:
 cd ../VTK
 cvs tag VTK-5-4-bp
 cd ../VTKData
 cvs tag VTK-5-4-bp
  • Verify that nobody else has made commits since the tag began:
 cd ../VTK
 cvs -n up -dAP
 cd ../VTKData
 cvs -n up -dAP
  • Create the branch:
 cd ../VTK
 cvs tag -b VTK-5-4
 cd ../VTKData
 cvs tag -b VTK-5-4


Dashboards

  • Duplicate all the existing dashboard scripts running against the previous branch and edit them to run against the new branch.
  • Go to each dashboard machine and edit its crontab or scheduled tasks to run the new scripts
  • Make sure there is a source and data tree for each script in its new location (a subdirectory named for the branch)
  • On CDash, make a new group for Nightly branch submissions
  • Once all machines are submitting on the new branch, and the previous branch has no more submissions, delete the CDash group for the previous branch