1

I am using Jenkins - UCM clearCase plugin. I have two streams - One for Code and one for config and build scipts.

Stream selector: stream_code_name@\vob

load rules:

         load set_code

         load set_config 

set_code is for stream_code_name stream.

Note: Jenkins downloaded the code under VIEWTAG/set_code. I want config code under VIEWTAG/set_config.

How do I load another stream ie stream_config_name@\vob. ??

I am open to using another plugins or base clearcase plugin too.

user418836
  • 847
  • 3
  • 8
  • 19

2 Answers2

0

The only reason why an UCM stream stream_code_name@\vob does not load anything under set_config, even though its config spec has a load rule is... there is no set_config component (no UCM component with a root folder set_config)

You need to rebase that stream with a foundation baseline of a component including set_config folder in order for that stream, when loaded (by Jenkins or even manually, on your own computer), to display any file in set_config.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

This is not an answer to the actual question. Its the workaround I used to overcome the situation. I created another project for stream_config_name@\vob.

load rules:

load set_config

Then added this subproject as dependent project to my codeStream Jenkins project. When the code stream project is triggered, configStream project is triggered and hence config data is also downloaded.

user418836
  • 847
  • 3
  • 8
  • 19