Jenkins不会在Jenkinsfile中执行步骤

时间:2018-08-09 12:16:16

标签: jenkins

为什么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....'
            }
        }
    }
}

有什么我想念的吗?

1 个答案:

答案 0 :(得分:3)

在詹金斯页面上单击pipeline之后,您需要选择new item类型,而不是freestyle/maven类型。输入名称,然后单击“确定”,然后选择pipeline from SCM