Digeek
Digeek

Reputation: 919

remote clearcase access on Jenkins

I am new to Jenkins and need some help.

We have ClearCase and Jenkins running on same machine (windows).
The idea is that I have to develop a plugin which will access ClearCase through Jenkins. Instead of approaching the ClearCase gui and command line is a separate window/machine, we want to do this job in Jenkins through a drop down gui. This gui should use cleartool mkview... command and should give list of CC VOBs and labels in dropdown gui.

My questions are:

Upvotes: 1

Views: 369

Answers (1)

VonC
VonC

Reputation: 1324577

The ClearCase plugin for Jenkins already create a view (snapshot or dynamic one).

view config

dyn view

If you want to develop your own plugin, you can take ideas from the ClearCase plugin sources.

ClearCase must be installed on the same server than Jenkins if you want to be able to use any cleartool command.
That doesn't means that the view server or Vob server cannot be elsewhere (even on a Linux server if you want).

Upvotes: 1

Related Questions