本文介绍了Jenkins不执行Jenkinsfile中的步骤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么jenkins不执行我的jenkinsfile?我构建的控制台输出是这样的:

Why does jenkins doesn't execute my jenkinsfile? The console ouput of my build is this:

20:06:19 Started by GitLab push by 
20:06:19 Building in workspace /var/jenkins_home/workspace/repo
20:06:19 [WS-CLEANUP] Deleting project workspace...
20:06:19 [WS-CLEANUP] Done
20:06:19 Cloning the remote Git repository
20:06:19 Cloning repository 
20:06:19  > git init /var/jenkins_home/workspace/ # timeout=10
20:06:19 Fetching upstream changes from https://gitlab.com/
20:06:19  > git --version # timeout=10
20:06:19 using GIT_ASKPASS to set credentials 
20:06:19  > git fetch --tags --progress https://gitlab.com/t+refs/heads/*:refs/remotes/origin/*
20:06:21  > git config remote.origin.url https://gitlab.com/ # timeout=10
20:06:21  > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
20:06:21  > git config remote.origin.url https://gitlab.com/ # timeout=10
20:06:21 Fetching upstream changes from https://gitlab.com/
20:06:21 using GIT_ASKPASS to set credentials 
20:06:21  > git fetch --tags --progress https://gitlab.com/ +refs/heads/*:refs/remotes/origin/*
20:06:22 skipping resolution of commit remotes/origin/jenkins, since it originates from another repository
20:06:22  > git rev-parse refs/remotes/origin/jenkins^{commit} # timeout=10
20:06:22  > git rev-parse refs/remotes/origin/origin/jenkins^{commit} # timeout=10
20:06:22 Checking out Revision 44f2afa95f961b5b28a482516abf05a17180ea48 (refs/remotes/origin/jenkins)
20:06:22  > git config core.sparsecheckout # timeout=10
20:06:22  > git checkout -f 44f2afa95f961b5b28a482516abf05a17180ea48
20:06:22 Commit message: "chore: test jenkins"
20:06:22  > git rev-list --no-walk dfff4c2214daa01de600086d6d28cf8f9d53cdc5 # timeout=10
20:06:22 Finished: SUCCESS

在我的詹金斯文件中,我有这个示例管道

In my jenkins file I have this sample pipeline

pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                echo 'Building..'
           }
        }
        stage('Test') {
            steps {
              echo 'Testing..'
            }
        }
        stage('Deploy') {
            steps {
                echo 'Deploying....'
            }
        }
    }
}

有什么我想念的吗?

推荐答案

在詹金斯页面上单击 new item 后,您需要选择 pipeline 类型,而不是选择 freestyle/maven 类型.输入名称并单击确定",然后从SCM中选择 pipeline

You need to choose pipeline type after click new item on jenkins page, rather than choose freestyle/maven type. Input a name and click 'OK', then choose pipeline from SCM

这篇关于Jenkins不执行Jenkinsfile中的步骤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 05:20