Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

no such DSL method `stages`

I'm trying to create my first Groovy script for Jenkins:

After looking here https://jenkins.io/doc/book/pipeline/, I created this:

node {   stages {      stage('HelloWorld') {       echo 'Hello World'     }      stage('git clone') {       git clone "ssh://[email protected]/myrepo.git"     }    } } 

However, I'm getting:

java.lang.NoSuchMethodError: No such DSL method "stages" found among steps

What am I missing?

Also, how can I pass my credentials to the Git Repository without writing the password in plain text?

like image 363
octavian Avatar asked Feb 08 '17 12:02

octavian


People also ask

What is DSL method in Jenkins?

Job DSL was one of the first popular plugins for Jenkins which allows managing configuration as code and many other plugins dealing with this aspect have been created since then, most notably the Jenkins Pipeline and Configuration as Code plugins.

What is a Jenkins file?

A Jenkinsfile is a text file that contains the definition of a Jenkins Pipeline and is checked into source control. Consider the following Pipeline which implements a basic three-stage continuous delivery pipeline.


1 Answers

You are confusing and mixing Scripted Pipeline with Declarative Pipeline, for complete difference see here. But the short story:

  • declarative pipelines is a new extension of the pipeline DSL (it is basically a pipeline script with only one step, a pipeline step with arguments (called directives), these directives should follow a specific syntax. The point of this new format is that it is more strict and therefor should be easier for those new to pipelines, allow for graphical editing and much more.
  • scripted pipelines is the fallback for advanced requirements.

So, if we look at your script, you first open a node step, which is from scripted pipelines. Then you use stages which is one of the directives of the pipeline step defined in declarative pipeline. So you can for example write:

pipeline {   ...   stages {     stage('HelloWorld') {       steps {         echo 'Hello World'       }     }     stage('git clone') {       steps {         git clone "ssh://[email protected]/myrepo.git"       }     }   } } 

So if you want to use declarative pipeline that is the way to go.

If you want to scripted pipeline, then you write:

node {   stage('HelloWorld') {     echo 'Hello World'   }    stage('git clone') {     git clone "ssh://[email protected]/myrepo.git"   } } 

E.g.: skip the stages block.

like image 181
Jon S Avatar answered Sep 22 '22 09:09

Jon S