Jenkins 内置变量 和变量作用域

参考

bash 复制代码
##  参考
https://www.cnblogs.com/weiweifeng/p/8295724.html

常用的内置变量

bash 复制代码
## 内置环境变量地址
${YOUR_JENKINS_HOST}/jenkins/env-vars.html


##  内置环境变量列表
https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#using-environment-variables

变量作用域

Global environment

The environment block in a Jenkins pipeline can be defined at different levels, and the scope of the environment variables defined in each level varies:

  1. Global environment : Environment variables defined at the top-level environment block will be available to all stages and steps in the pipeline.
Groovy 复制代码
pipeline {
    agent any
    environment {
        GLOBAL_VAR = "global value"
    }
    // ...
}

Stage environment

tage environment : Environment variables defined within a specific stage block will only be available to that stage and its steps.

Groovy 复制代码
pipeline {
    agent any
    stages {
        stage('Stage 1') {
            environment {
                STAGE_VAR = "stage 1 value"
            }
            steps {
                // GLOBAL_VAR and STAGE_VAR are available here
            }
        }
        stage('Stage 2') {
            environment {
                STAGE_VAR = "stage 2 value"
            }
            steps {
                // GLOBAL_VAR and STAGE_VAR (stage 2 value) are available here
            }
        }
    }
}

Step environment

  1. Step environment : Environment variables can also be defined within a specific step using the envInject step, which will only be available for that step.
Groovy 复制代码
pipeline {
    agent any
    stages {
        stage('Example') {
            steps {
                envInject {
                    env:
                        [
                            STEP_VAR = "step value"
                        ]
                }
                // GLOBAL_VAR, STAGE_VAR, and STEP_VAR are available here
            }
        }
    }
}
相关推荐
LinuxSuRen10 小时前
Jenkins 命令行多线程并发下载制品包
运维·jenkins
神的孩子都在歌唱17 小时前
es创建的索引状态一直是red
大数据·elasticsearch·jenkins
万万君1 天前
Linux 更改Jenkins使用其他账户启动
linux·jenkins
赤叶丶秋枫1 天前
Jenkins入门使用
运维·jenkins
紫菜(Nori)1 天前
Jenkins Api Token 访问问题
运维·jenkins
嘤嘤怪呆呆狗2 天前
【开发问题记录】使用 Docker+Jenkins+Jenkins + gitee 实现自动化部署前端项目 CI/CD(centos7为例)
前端·vue.js·ci/cd·docker·gitee·自动化·jenkins
张某人想退休2 天前
Postman最新接口自动化持续集成
自动化·jenkins·postman
lifeng43212 天前
Jenkins集成部署(图文教程、超级详细)
运维·jenkins
无所不在的物质2 天前
Jenkins基础教程
运维·云原生·自动化·jenkins
喝醉酒的小白3 天前
ElasticSearch 的核心功能
大数据·elasticsearch·jenkins