Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extracting part of a string on jenkins pipeline

I am having some trouble with the syntax in my pipeline script.

I am trying to capture everything after the last forward slash "/" and before the last period "." in this string [email protected]:project/access-server-pd.git (access-server-pd)

Here (below) is how I would like to set it up

MYVAR="[email protected]:project/access-server-pd.git" 

NAME=${MYVAR%.*}  # retain the part before the colon
NAME=${NAME##*/}  # retain the part after the last slash
echo $NAME

I have it current set up with triple quotes on the pipeline script:

  stage('Git Clone') {
  MYVAR="$GIT_REPO"
  echo "$MYVAR"
  NAME="""${MYVAR%.*}"""
  echo "$NAME"

But I am receiving an unexpected token on "." error. How might I write this so that I can get this to work?

UPDATE: This command does the trick:

echo "[email protected]:project/access-server-pd.git" | sed 's#.*/\([^.]*\).*#\1#'

Now I just need to find the proper syntax to create a variable to store that value.

like image 499
Lgalan90 Avatar asked Apr 25 '18 18:04

Lgalan90


People also ask

What is checkout scm in Jenkins?

1. The checkout step will checkout code from source control; scm is a special variable which instructs the checkout step to clone the specific revision which triggered this Pipeline run.

What's Jenkinsfile?

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.

What language is Jenkinsfile?

The Jenkinsfile is written using the Groovy Domain-Specific Language and can be generated using a text editor or the Jenkins instance configuration tab. The Declarative Pipelines is a relatively new feature that supports the concept of code pipeline. It enables the reading and writing of the pipeline code.


1 Answers

In this case, it looks like using a few Groovy/Java methods on the String can extract the parts.

final beforeColon = url.substring(0, url.indexOf(':'))  // [email protected]
final afterLastSlash = url.substring(url.lastIndexOf('/') + 1, url.length()) // project/access-server-pd.git

This uses a few different methods:

  • public int String.indexOf(String str, int fromIndex)
  • public String String.substring(int beginIndex, int endIndex)
  • public int String.length()
  • public int String.lastIndexOf(String str)

You do need to be careful about the code you use in your pipeline. If it is sandboxed it will run in a protected domain where every invocation is security checked. For example, the whitelist in the Script Security Plugin whitelists all of the calls used above (for example, method java.lang.String lastIndexOf java.lang.String).

Performing String manipulation in your pipeline code is perfectly reasonable as you might make decisions and change your orchestration based on it.

like image 153
mkobit Avatar answered Sep 18 '22 15:09

mkobit