-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
85 lines (84 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
pipeline {
triggers {
githubPush()
pollSCM('H/15 * * * *')
}
agent {
kubernetes {
label 'pod'
containerTemplate {
name 'buildbox'
image 'openjdk:8-jdk-slim'
ttyEnabled true
command 'cat'
}
}
}
stages {
stage('Checkout') {
steps {
checkout scm
// git credentialsId: 'asibot', url: 'https://github.com/agilestacks/jenkins.git'
}
}
stage('Build') {
steps {
container('buildbox') {
sh script: './gradlew compileGroovy'
}
}
}
stage('Test') {
steps {
container('buildbox') {
script {
try {
sh script: './gradlew codenarcMain'
} catch (err) {
currentBuild.result = 'UNSTABLE'
currentBuild.description = 'CodeNarc violations found'
}
try {
sh script: './gradlew cleanTest test'
} catch (err) {
error 'Some of unit tests failed'
}
}
}
}
}
}
post {
always {
junit testResults: 'build/test-results/**/*.xml'
// container('buildbox') {
// sh script: './gradlew allureReport'
// }
publishHTML(target: [
allowMissing : true,
alwaysLinkToLastBuild: false,
keepAll : true,
reportDir : 'build/reports/tests/test',
reportFiles : 'index.html',
reportName : 'Spock',])
publishHTML(target: [
allowMissing : true,
alwaysLinkToLastBuild: false,
keepAll : true,
reportDir : 'build/reports/codenarc',
reportFiles : 'main.html',
reportName : 'Lint',])
// publishHTML(target: [
// allowMissing : true,
// alwaysLinkToLastBuild: false,
// keepAll : true,
// reportDir : 'build/reports/allure-report',
// reportFiles : 'index.html',
// reportName : 'Allure',])
}
changed {
slackSend color: slack.buildColor,
message: slack.buildReport(htmlReports: ['Spock', 'Lint'])
}
}
}