카테고리 없음
d
2021. 10. 5. 20:18반응형
jenkins 함수 선언한기
env.COMBACK_HOME = "/root/python"
env.PATHS = /wow/bin/
}
---------------------------------------------------------------------------
. post : 특정 stage나 pipeline이 시작되기 이전 또는 이후에 실행 될 confition block을 정의합니다.
------------------
void setEnvironment() {
env.CAR = "truck";
}
pipeline {
agent {
docker {
image 'abc/abc'
args '-u root'
}
}
stages {
stage() {...
}
}
-----------
jenkins post에 대해서,
post {
success {
ㅌㅌㅌㅌㅌ"
archiveArtifacts (
artifacts: "Sㅌㅌ_result/html/**/*, ㅌㅌ_result.zip"
)
}
cleanup {
deleteDir()
}
}
반응형