0

我是 Jenkins 和持续集成的新手。这里我提到了在 Pipe line 中使用 groovy 时遇到的问题。

node('node-name')
{
    stage 'Checkout code'

    bat 'http://devtfsappd00.avi.com:8080/tfs/Example_DevCollection'
}

只是一个非常基本的管道脚本。其中说:

'http:' 不是内部或外部命令、可运行程序或批处理文件。错误:脚本返回退出代码 1 完成:失败

4

1 回答 1

0

这是从 Jenkins 管道脚本中的 TFS 签出文件的代码:

checkout([$class: 'TeamFoundationServerScm', credentialsConfigurer: [$class: 'AutomaticCredentialsConfigurer'], projectPath: '$/TFS/Server_Path', serverUrl: 'http://tfs-server-url/', useOverwrite: true, useUpdate: true, workspaceName: 'Hudson-${JOB_NAME}-${NODE_NAME}'])
于 2018-08-15T14:58:23.277 回答