Jenkins 的 Clear Case UCM 插件的 VCS 设置
VCS settings for Clear Case UCM Plugin for Jenkins
我正在使用 Jenkins 及其 ClearCase UCM 插件,但无法使其正常工作(使 ClearCase 检出成为 Jenkins 作业工作区中的正确视图)。
我一直在尝试为 ClearCase 设置源代码,但它要求的输入太多,我不知道要填写什么。
它要求以下字段:
Viewtag : Jenkins_${USER_NAME}_${NODE_NAME}_${JOB_NAME}${DASH_WORKSPACE_NUMBER}
View Path:
Stream Selector.
有人可以帮忙吗?
ClearCase 正常工作的正确值应该是什么,即在 Jenkins 作业工作区中获取代码?
JENKINS ClearCase UCM Plugin,与任何其他 VCS(版本控制系统)Jenkins 插件一样,需要访问源代码以便 Jenkins 在 Jenkins 工作区中检出所述源代码。
为此:
The plugin will automatically create a snapshot view in a folder named 'view' in the root of the job's workspace.
Snapshot views can - as opposed to dynamic views - be located anywhere, which we exploit to place it inside the job's workspace.
Dynamic Views can only reside on the location where your mvfs is located and that is not inside the workspace.
应该不会问你说的字段。
改为:
ClearCase UCM 插件引入了几个构建变量:
CC_BASELINE
正在构建基线
CC_VIEWTAG
视图标签
CC_VIEWPATH
视图路径(同%WORKSPACE%\view
)
您可以使用该插件来设置作业,方法是让它通过轮询给定流上的新基线来监视 ClearCase UCM VOB 中的更改。
根据评论,这些字段的默认值很好,如果该插件的设置中提到流,Jenkins 将创建一个访问 UCM 组件的动态视图。
我正在使用 Jenkins 及其 ClearCase UCM 插件,但无法使其正常工作(使 ClearCase 检出成为 Jenkins 作业工作区中的正确视图)。
我一直在尝试为 ClearCase 设置源代码,但它要求的输入太多,我不知道要填写什么。
它要求以下字段:
Viewtag : Jenkins_${USER_NAME}_${NODE_NAME}_${JOB_NAME}${DASH_WORKSPACE_NUMBER}
View Path:
Stream Selector.
有人可以帮忙吗?
ClearCase 正常工作的正确值应该是什么,即在 Jenkins 作业工作区中获取代码?
JENKINS ClearCase UCM Plugin,与任何其他 VCS(版本控制系统)Jenkins 插件一样,需要访问源代码以便 Jenkins 在 Jenkins 工作区中检出所述源代码。
为此:
The plugin will automatically create a snapshot view in a folder named 'view' in the root of the job's workspace.
Snapshot views can - as opposed to dynamic views - be located anywhere, which we exploit to place it inside the job's workspace.
Dynamic Views can only reside on the location where your mvfs is located and that is not inside the workspace.
应该不会问你说的字段。
改为:
ClearCase UCM 插件引入了几个构建变量:
CC_BASELINE
正在构建基线CC_VIEWTAG
视图标签CC_VIEWPATH
视图路径(同%WORKSPACE%\view
)
您可以使用该插件来设置作业,方法是让它通过轮询给定流上的新基线来监视 ClearCase UCM VOB 中的更改。
根据评论,这些字段的默认值很好,如果该插件的设置中提到流,Jenkins 将创建一个访问 UCM 组件的动态视图。