문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
ci:jenkins:pipeline [2018/11/28 15:44] kwon37xi |
ci:jenkins:pipeline [2022/05/30 23:10] (현재) kwon37xi [lint] |
||
---|---|---|---|
줄 8: | 줄 8: | ||
* [[https:// | * [[https:// | ||
* [[https:// | * [[https:// | ||
+ | |||
+ | ===== Snippet Generator ===== | ||
+ | * '' | ||
+ | |||
+ | ===== lint ===== | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[ci: | ||
===== 기본 환경변수 ===== | ===== 기본 환경변수 ===== | ||
줄 91: | 줄 99: | ||
} | } | ||
</ | </ | ||
+ | |||
+ | ===== Pipeline 에서 입력 값 받기 ===== | ||
+ | * [[https:// | ||
+ | * **입력 값은 '' | ||
===== JUnit 테스트 결과 메일/ | ===== JUnit 테스트 결과 메일/ | ||
줄 117: | 줄 129: | ||
</ | </ | ||
</ | </ | ||
+ | * 선언적 파이프라인 구성시에 최상단에('' | ||
+ | |||
+ | <code groovy> | ||
+ | import jenkins.model.* | ||
+ | import hudson.tasks.test.AbstractTestResultAction | ||
+ | |||
+ | String testResultMessage = ' | ||
+ | |||
+ | pipeline { | ||
+ | stages { | ||
+ | |||
+ | stage(' | ||
+ | steps { | ||
+ | junit ' | ||
+ | |||
+ | script { | ||
+ | AbstractTestResultAction testResultAction = currentBuild.rawBuild.getAction(AbstractTestResultAction.class) | ||
+ | if (testResultAction != null) { | ||
+ | def totalNumberOfTests = testResultAction.totalCount | ||
+ | def failedNumberOfTests = testResultAction.failCount | ||
+ | def failedDiff = testResultAction.failureDiffString | ||
+ | def skippedNumberOfTests = testResultAction.skipCount | ||
+ | def passedNumberOfTests = totalNumberOfTests - failedNumberOfTests - skippedNumberOfTests | ||
+ | testResultMessage = " | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | post { | ||
+ | failure { | ||
+ | slackSend(channel: | ||
+ | - 테스트 실패 : ${testResultMessage} | ||
+ | """ | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== parallel pipeline ===== | ||
+ | * [[https:// | ||
+ | * 여러 장비를 [[ci: | ||
+ | * [[https:// | ||
===== 참조 ===== | ===== 참조 ===== | ||
* [[https:// | * [[https:// | ||