2016-04-28 70 views
1

我們是jenkins 2.0的新手。我們要做的是定義一個Jenkinsfile並在第一階段完成結賬。我們試圖從我們的mercurial存儲庫檢查我們的項目,但我們遇到了其他問題。問題: 可以使用mercurial插件嗎?Jenkins 2.0管道項目中的Mercurial結帳

我們試圖爲:

checkout([$class: 'MercurialSCM', branches: [[name: '*/default']], userRemoteConfigs: [[url: 'https://pathToOurRepo.com']]]) 

,但得到這個exeption:

java.lang.NullPointerException 
at hudson.plugins.mercurial.MercurialSCM.cachedSource(MercurialSCM.java:915) 
at hudson.plugins.mercurial.MercurialSCM.clone(MercurialSCM.java:766) 
at hudson.plugins.mercurial.MercurialSCM.checkout(MercurialSCM.java:556) 
at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:109) 
at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:83) 
at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:73) 
at org.jenkinsci.plugins.workflow.steps.AbstractSynchronousNonBlockingStepExecution$1$1.call(AbstractSynchronousNonBlockingStepExecution.java:49) 
at hudson.security.ACL.impersonate(ACL.java:213) 
at org.jenkinsci.plugins.workflow.steps.AbstractSynchronousNonBlockingStepExecution$1.run(AbstractSynchronousNonBlockingStepExecution.java:47) 
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) 
at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) 
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) 
at java.lang.Thread.run(Thread.java:745) 

是否有任何人誰可以幫助我們這個問題?

+0

這與DSL有什麼關係? –

回答

1

任何有興趣的拉動只有特定的分支,或者說Mercurial庫的tip,這個工作對我來說:

checkout scm: [$class: 'MercurialSCM', 
    source: 'ssh://[email protected]/username/repo-name', 
    revision: 'tip', 
    clean: true, 
    credentialsId: '{your-jenkins-bitbucket-creds}'], 
poll: false