diff --git a/Jenkinsfile b/Jenkinsfile index 674a3e6fd3c622caa15d7937db3b0294ba9d3030..9cc2c08d3502b31041701ee81847ec6042f95b4a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,6 +22,14 @@ pipeline { } } + stage('read environment'){ + steps{ + echo "${env.BUILD_ID}" + echo '---------------------------' + echo ${env.BUILD_ID} + } + } + stage('Git Checkout') { steps { checkout([$class: 'GitSCM', branches: [[name: '$Branches']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'a97e0ce1-814b-4e7d-832a-4ac3eed72506', url: 'git@gitlab.schbrain.com:zhangdongdong/test.git']]])