문서의 이전 판입니다!
params.PARAMETER_NAME
env.PARAMETER_NAME
post { always { archiveArtifacts artifacts: 'build/libs/**/*.jar', fingerprint: true junit 'build/reports/**/*.xml' } }
pipeline { agent any environment { MY_ENV = "${env.BRANCH_NAME}" } // 아래에서 MY_ENV 변수로 사용 }
steps
에서 script
블록을 둔다. steps { echo 'Building Container..' script { if (ENVIRONMENT_NAME == 'development') { ENV_NAME = 'Development' } else if (ENVIRONMENT_NAME == 'release') { ENV_NAME = 'Production' } } echo 'Building Branch: ' + env.BRANCH_NAME echo 'Build Number: ' + env.BUILD_NUMBER echo 'Building Environment: ' + ENV_NAME echo "Running your service with environemnt ${ENV_NAME} now" }
SUCCESS
, UNSTABLE
, FAILURE
로 변경가능하다.error “메시지”
: 상태를 FAILURE
로 변경하면서 메시지 출력혹은 직접 지정
currentBuild.result = 'UNSTABLE' // SUCCESS, UNSTABLE, FAILURE