1

In my project there are multiple developers onsite as well as offshore who keeps on checking-in their code continuoulsly. Being the Build Engineer, I want to get the notification on every check-in with the developer name in Clearcase. As I am new to Clearcase please tell me step-by-step process what I do to achieve this as I am working on Window Platform.

I have already gone through this but I didn't understand from where I start and how. Please advise me the step by step process, if possible.

Thanks

Community
  • 1
  • 1
LivCool
  • 253
  • 1
  • 12
  • I have added some explanations, and updated the email script link in my previous answer. – VonC May 04 '15 at 11:52

1 Answers1

0

Considering my old answer, you start by registering the post-op trigger in the vob you want to see that trigger run on each checkin.
You do that by using a dynamic view in which you mount the vob.

cleartool start anyDynamicView
cd m:\anyDynamicView
cleartool mount \aVobTag
cd aVobTag
cleartool mktrtype...

The script must be in a shared path accessible both from the vob server and by the Windows clients.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • of which script you are mentioning here. And how can i make the window OS to send mail as CC is installed on same. And I am only working on static view so can still it be possible. – LivCool May 05 '15 at 06:39
  • @R.Sha I am referring to the script I linked in my original answer: http://www-01.ibm.com/support/knowledgecenter/SSSH27_8.0.1/com.ibm.rational.clearcase.cc_proj.doc/c_pstop_scrpt.htm. It is a perl one, so it should work on Windows or Unix, provided you have access to the smtp of your company. – VonC May 05 '15 at 06:40
  • thanks for the answer, but still I am confusing as where should I put the script on windows CC. Do i need to go to Administrator console or there is a direct link og triggers in CC somewhere. Please help. – LivCool May 11 '15 at 08:04
  • @R.Sha "where should I put the script on windows CC" in a shared path which is accessible both from the Windows client and the ClearCase server. – VonC May 11 '15 at 10:51