how to find the list activities delivered to integration stream on a particular day?

后端 未结 1 1908
轻奢々
轻奢々 2020-12-06 15:49

We use to take nightly builds irrespective of any files were delivered to integration stream or not. What i would like to do is , find the list of deliveries done on a parti

相关标签:
1条回答
  • 2020-12-06 16:13

    Any deliver in UCM will generate an activity call deliver.xxx.

    Simply list all activities for a given Stream (see cleartool lsact man page)

    –in stream-selector [ –r/ecurse ]
    

    Displays a list of all activities in the specified stream.
    With –r/ecurse, includes activities in child streams.

    So:

    cleartool lsact -in stream:aStream@\aPVob -fmt "%n %d\n"|grep deliver
    

    And filter through the dates (%d) in order to get only the deliver activities for that day.

    (stream:aStream@\aPVob is a "stream selector", although you can directly use aStream@\aPVob in this case: cleartool is expecting a stream name parameter after the -in option)

    0 讨论(0)
提交回复
热议问题