Cloudbees Jenkins Folders Plugin: Folder Name as E

2019-08-27 16:07发布

Is the Folder Name available as an environment variable similar to JOB_NAME?

For a folder; JOB_NAME contains the full path including parent folders. I want the immediate parent folder as an environment variable.

3条回答
一夜七次
2楼-- · 2019-08-27 16:23

I used:

FOLDER_NAME=${JOB_NAME%/*}
STAGE=${JOB_NAME##*/}

See http://www.tldp.org/LDP/abs/html/parameter-substitution.html

查看更多
叼着烟拽天下
3楼-- · 2019-08-27 16:31

No such variable exists, but $(basename $(dirname $JOB_NAME)) would give you what you are asking for.

查看更多
Explosion°爆炸
4楼-- · 2019-08-27 16:39

Using the suggestion of $(basename $(dirname $JOB_NAME)) combined with the Environment Script Plugin, you should be able to set such an environment variable by selecting Generate environment variables from script and then providing the Script Content of:

echo FOLDER_NAME=$(basename $(dirname $JOB_NAME))
查看更多
登录 后发表回答