문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
ci:jenkins:pipeline [2018/11/28 15:34] kwon37xi [JUnit 테스트 결과 메일/Slack 발송] |
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 테스트 결과 메일/ | ||
* [[https:// | * [[https:// | ||
- | * 호출하는 메소드가 금지돼 있어서 whitelist 에 추가 필요해 보임. Build 로그 메시지를 잘 보면, whitelist에 추가 시킬수 있는 admin 페이지로의('' | + | * 호출하는 메소드가 금지돼 있어서 whitelist 에 추가 필요해 보임. Build 로그 메시지를 잘 보면, whitelist에 추가 시킬수 있는 admin 페이지로의('' |
- | method hudson.model.Actionable getAction java.lang.Class | + | * 그 뒤에 계속해서 메소드 하나하나마다 추가하라고 나오므로 '' |
- | method org.jenkinsci.plugins.workflow.support.steps.build.RunWrapper getRawBuild | + | <?xml version=' |
+ | < | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
</ | </ | ||
+ | * 선언적 파이프라인 구성시에 최상단에('' | ||
+ | |||
+ | <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:// | ||