简体   繁体   English

使用 Jenkins 在管道中存储凭据作为 git 推送的 yml

[英]Using Jenkins stored credentials in Pipeline as yml for git push

I am writing a Pipeline in Jenkins where I need to push the changes back to BitBucket using script.我正在 Jenkins 中编写一个管道,我需要使用脚本将更改推回 BitBucket。 I have used stored credentials to get the code from BitBucket but unable to push it back to the server.我已使用存储的凭据从 BitBucket 获取代码,但无法将其推回服务器。 Here is my script:这是我的脚本:

  - stage: Pull Code and Merge master in UAT
  steps:
    script:
      - "git credentialsId: '0b69d4a0-623b-4ba6-8e2c-8419ced4a31a', url: 'repo url'"
      - sh 'git status'
      - sh 'git checkout release/uat'
      - sh 'git merge -m "merging changes from main to UAT" origin/master'
      - "git push credentialsId: '0b69d4a0-623b-4ba6-8e2c-8419ced4a31a',url: 'repo url"  
      - sh 'git status'

git push is causing the errors. git 推送导致错误。 I don't know a way to do push using stored credentials我不知道使用存储的凭据进行推送的方法

I am using this plugin to run pipeline as yaml.我正在使用这个插件作为 yaml 运行管道。

Here is the error being thrown:这是抛出的错误:

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
WorkflowScript: 14: expecting '}', found ':' @ line 14, column 33.
         git push credentialsId: '0b69d4a0-623b-4ba6-8e2c-8419ced4a31a',url: 'http://10.0.110.4:7990/scm/ceye/ceye-admin.git
                               ^

1 error

at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.ErrorCollector.addFatalError(ErrorCollector.java:150)
at org.codehaus.groovy.control.ErrorCollector.addError(ErrorCollector.java:120)
at org.codehaus.groovy.control.ErrorCollector.addError(ErrorCollector.java:132)
at org.codehaus.groovy.control.SourceUnit.addError(SourceUnit.java:350)
at org.codehaus.groovy.antlr.AntlrParserPlugin.transformCSTIntoAST(AntlrParserPlugin.java:144)
at org.codehaus.groovy.antlr.AntlrParserPlugin.parseCST(AntlrParserPlugin.java:110)
at org.codehaus.groovy.control.SourceUnit.parse(SourceUnit.java:234)
at org.codehaus.groovy.control.CompilationUnit$1.call(CompilationUnit.java:168)
at org.codehaus.groovy.control.CompilationUnit.applyToSourceUnits(CompilationUnit.java:943)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:605)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:142)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:127)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:571)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:523)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:337)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)

Finished: FAILURE完成:失败

The git command of Jenkins is basically just a wrapper of git clone/pull , it has no push option. Jenkins 的git命令基本上只是git clone/pull的包装器,它没有push选项。 The syntax error is caused because Jenkins expects the name of a parameter but gets "push".语法错误是因为 Jenkins 需要参数名称但获得“推送”。

To make this work you could either use a ssh key or encode the username and password in the url, like so:要完成这项工作,您可以使用 ssh 密钥或在 url 中编码用户名和密码,如下所示:

sh "git push https://${username}:${password}@github.com/...repo.../.com

If the password is not URL save (contains & etc), you have to escape it first.如果密码不是 URL 保存(包含等& ,您必须先将其转义。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM