美文网首页
彻底解决 Jenkins Slaver 节点无法执行 Git-L

彻底解决 Jenkins Slaver 节点无法执行 Git-L

作者: 鱿鱼鉄板燒 | 来源:发表于2019-08-12 20:32 被阅读0次

    最新配置新增一台iMac当作持续集成构建的Slaver节点,添加节点很顺利,但是拉取代码的时候发现无法正常。出现以下提示:

    hudson.plugins.git.GitException: Command "git checkout -f 1465f8d3b3afa59d3f40b876debd6e08988d3d39" returned status code 128:
    stdout: 
    stderr: git-lfs filter-process: git-lfs: command not found
    fatal: The remote end hung up unexpectedly
    
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2042)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$900(CliGitAPIImpl.java:72)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:2341)
    

    错误分析

    错误中提示 git-lfs 找不到。

    1. ssh远程登陆主机查看大文件支持是否已经安装:
    $ which git-lsf
    /usr/local/bin/git-lfs
    
    1. 如果不能看到以上结果,先安装大文件支持。
    $ brew install git-lfs
    # 全局 git 的配置
    $ git lfs install
    

    通过以上肯定已经有了,重试了一次还是无法正常拉取代码。说明命令行程序jenkins无法访问。我们需要修正下默认环境。

    解决方法

    执行命令:

    $ git --exec-path
    /Applications/Xcode.app/Contents/Developer/usr/libexec/git-core
    

    获得了git的默认访问路径,将 git-lfs命令拷贝到该路径下。

    $ cp $(which git-lfs) /Applications/Xcode.app/Contents/Developer/usr/libexec/git-core
    

    如果提示无权限,在前头加上 sudo 就能成功。

    Rebuild Jenkins集成任务搞定。

    相关文章

      网友评论

          本文标题:彻底解决 Jenkins Slaver 节点无法执行 Git-L

          本文链接:https://www.haomeiwen.com/subject/ccupjctx.html