首页 > 解决方案 > Jenkins 不执行 Jenkinsfile 中的步骤

问题描述

为什么詹金斯不执行我的詹金斯文件?我构建的控制台输出是这样的:

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

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

pipeline {
    agent any

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

有什么我错过的吗?

标签: jenkins

解决方案


您需要pipeline在点击new itemjenkins 页面后选择类型,而不是选择freestyle/maven类型。输入名称并单击“确定”,然后选择pipeline from SCM


推荐阅读