-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
61 lines (55 loc) · 1.75 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
pipeline {
agent { dockerfile true }
options {
ansiColor('xterm')
copyArtifactPermission('*')
}
stages {
stage("Initialize") {
steps {
sh "timo setting json"
}
}
stage("CSW") {
steps {
// 코드 정적분석 실행
sh "timo run CSW"
sh "timo parse CSW"
// 코드 정적분석 결과 퍼블리싱
recordIssues enabledForFailure: true, aggregatingResults: false, tools: [
flake8(pattern: "**/flake8.txt", name: "Python codestyle")
]
}
}
stage("Unittest & Coverage") {
steps {
//유닛테스트 실행
sh "timo run Unittest"
sh "timo parse Unittest"
// 코드 커버리지 실행
sh "timo run Coverage"
sh "timo parse Coverage"
// 유닛테스트 결과 퍼블리싱
publishHTML(
[
allowMissing: false,
alwaysLinkToLastBuild:
true, keepAll:
true,
reportDir: 'Unittest-report',
reportFiles: '*.html',
reportName: 'Unittest Report',
reportTitles: 'Unittest'
]
)
// 코드 커버리지 결과 퍼블리싱
cobertura coberturaReportFile: '**/coverage.xml', enableNewApi: true
}
}
stage("Show build score") {
steps {
sh "timo get score"
}
}
}
}