gpt4 book ai didi

git - 具有 "Multiple candidate revisions"的 Jenkins 管道正在挑选旧管道

转载 作者:太空狗 更新时间:2023-10-29 13:03:09 26 4
gpt4 key购买 nike

我配置了一个 Jenkins 多分支管道,它应该从远程 GIT 存储库获取源代码以进行构建。 Jenkins 似乎没有“随机”为构建选择一个旧提交,并在构建日志文件中显示消息“多个候选修订版”。

我的管道看起来像:

checkout(
[
$class: 'GitSCM',
branches: [[name: "release/0.0.1"]],
doGenerateSubmoduleConfigurations: false,
extensions: [
[$class: 'MessageExclusion', excludedMessage: '(?s)^\\[DOC\\] Robot.*']
],
submoduleCfg: [],
userRemoteConfigs: [[credentialsId: 'xxx', url: "https://somerepo.net/scm/someproject/somecomponent.git"]]
]
)

Jenkins 的日志文件显示:

[Pipeline] checkout
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://somerepo.net/scm/someproject/somecomponent.git # timeout=10
Fetching upstream changes from https://somerepo.net/scm/someproject/somecomponent.git
> git --version # timeout=10
using GIT_ASKPASS to set credentials
> git fetch --tags --progress https://somerepo.net/scm/someproject/somecomponent.git +refs/heads/*:refs/remotes/origin/*
> git rev-parse release/0.0.1^{commit} # timeout=10
> git rev-parse refs/remotes/origin/release/0.0.1^{commit} # timeout=10
Multiple candidate revisions
Checking out Revision 301c954e576bd3f03ef787563f159d541cb6e8d2 (release/0.0.1)
> git config core.sparsecheckout # timeout=10
> git checkout -f 301c954e576bd3f03ef787563f159d541cb6e8d2
Commit message: "Some old commit message"
> git rev-list --no-walk 88be7349bd7b6ddb0654325e6b07cf1da2f8a35b # timeout=10

在日志文件中,我可以看到 Jenkins 使用的是来自 release/0.0.1 的旧版本 301c954e576bd3f03ef787563f159d541cb6e8d2 而不是来自 refs/remotes/0rigin.1.release/0. 的新远程版本 88be7349bd7b6ddb0654325e6b07cf1da2f8a35b

知道这里出了什么问题吗?

最佳答案

我不是 git 专家,但请尝试指定

分支:[[name: "*/release/0.0.1"]],

代替

分支:[[name: "release/0.0.1"]],

关于git - 具有 "Multiple candidate revisions"的 Jenkins 管道正在挑选旧管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49864570/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com