Git LFS setup in jenkins

前端 未结 2 1161
无人共我
无人共我 2021-02-09 01:54

I have an issue with git LFS use in Jenkins. What I am doing now is that

  1. I am building a war from maven through Jenkins that war contains a jar file
  2. thro
相关标签:
2条回答
  • 2021-02-09 02:31

    This can be done with "Pre SCM BuildStep” Plugin.

    1. Add “Pre SCM BuildStep” Plugin in Jenkins.
    2. In Job Configuration, Select the property Run buildstep before SCM runs in Build Environment Section and Click on Add Build Step, Select Execute Shell. Add below command in the shell, git lfs install
    3. In the Source Code Management section -> Additional Behaviours -> Add Git LFS pull after checkout.

    Reference Link

    0 讨论(0)
  • 2021-02-09 02:38

    This can be done using the regular Git+Plugin for Jenkins (version 3.1.0 onwards).

    If you are using Jenkins Pipelines (i.e. with a Jenkinsfile in the root of your repo), the key thing is to include the extension [$class: 'GitLFSPull'] in your checkout() call. Here is an (edited) example taken from one of our repos:

    checkout([  $class: 'GitSCM', 
        branches: [[name: 'refs/heads/'+env.BRANCH_NAME]],
            doGenerateSubmoduleConfigurations: false,
            extensions: [
                [$class: 'GitLFSPull'],
                [$class: 'CheckoutOption', timeout: 20],
                [$class: 'CloneOption',
                        depth: 0,
                        noTags: false,
                        reference: '/other/optional/local/reference/clone',
                        shallow: false,
                        timeout: 120]
            ],
            submoduleCfg: [],
            userRemoteConfigs: [
                [credentialsId: 'foobar',
                url: 'https://github.com/foo/bar.git']
            ]
        ])
    

    Using the Snippet Generator it is possible to generate this code, by selecting "Git LFS pull after checkout" from the "Additional Behaviours" menu. See screenshot here

    0 讨论(0)
提交回复
热议问题