forked from infinispan/infinispan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
137 lines (121 loc) · 5.37 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/env groovy
pipeline {
agent {
label 'slave-group-normal'
}
options {
timeout(time: 4, unit: 'HOURS')
}
stages {
stage('Prepare') {
steps {
// Show the agent name in the build list
script {
// The manager variable requires the Groovy Postbuild plugin
manager.addShortText(env.NODE_NAME, "grey", "", "0px", "")
}
// Workaround for JENKINS-47230
script {
env.MAVEN_HOME = tool('Maven')
env.MAVEN_OPTS = "-Xmx800m -XX:+HeapDumpOnOutOfMemoryError"
env.JAVA_HOME = tool('JDK 8')
env.JAVA10_HOME = tool('JDK 10')
}
sh 'cleanup.sh'
}
}
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
configFileProvider([configFile(fileId: 'maven-settings-with-deploy-snapshot', variable: 'MAVEN_SETTINGS')]) {
sh "$MAVEN_HOME/bin/mvn clean install -B -V -e -s $MAVEN_SETTINGS -DskipTests -Djava10.home=$JAVA10_HOME"
}
warnings canRunOnFailed: true, consoleParsers: [[parserName: 'Maven'], [parserName: 'Java Compiler (javac)']], shouldDetectModules: true
checkstyle canRunOnFailed: true, pattern: '**/target/checkstyle-result.xml', shouldDetectModules: true
}
}
stage('Tests') {
steps {
configFileProvider([configFile(fileId: 'maven-settings-with-deploy-snapshot', variable: 'MAVEN_SETTINGS')]) {
sh "$MAVEN_HOME/bin/mvn verify -B -V -e -s $MAVEN_SETTINGS -Dmaven.test.failure.ignore=true -Dansi.strip=true -Djava10.home=$JAVA10_HOME"
}
// TODO Add StabilityTestDataPublisher after https://issues.jenkins-ci.org/browse/JENKINS-42610 is fixed
// Capture target/surefire-reports/*.xml, target/failsafe-reports/*.xml,
// target/failsafe-reports-embedded/*.xml, target/failsafe-reports-remote/*.xml
junit testResults: '**/target/*-reports*/*.xml',
testDataPublishers: [[$class: 'ClaimTestDataPublisher']],
healthScaleFactor: 100, allowEmptyResults: true
// Workaround for SUREFIRE-1426: Fail the build if there a fork crashed
script {
if (manager.logContains("org.apache.maven.surefire.booter.SurefireBooterForkException:.*")) {
echo "Fork error found"
manager.buildFailure()
}
}
// Dump any dump files to the console
sh 'find . -name "*.dump*" -exec echo {} \\; -exec cat {} \\;'
sh 'find . -name "hs_err_*" -exec echo {} \\; -exec grep "^# " {} \\;'
}
}
}
post {
always {
// Archive logs and dump files
sh 'find . \\( -name "*.log" -o -name "*.dump*" -o -name "hs_err_*" -o -name "*.hprof" \\) -exec xz {} \\;'
archiveArtifacts allowEmptyArchive: true, artifacts: '**/*.xz,documentation/target/generated-html/**,**/surefire-reports/TEST-*.xml'
// Clean
sh 'git clean -qfdx || echo "git clean failed, exit code $?"'
}
changed {
script {
echo "post build status: changed"
changed = true
}
}
unstable {
echo "post build status: unstable"
script {
echo "Build result notify policy is: ${params.BUILD_RESULT_NOTIFY}"
if (params.BUILD_RESULT_NOTIFY == 'EMAIL') {
echo 'Sending notify'
emailext to: '${DEFAULT_RECIPIENTS}', subject: '${DEFAULT_SUBJECT}',
body: '${DEFAULT_CONTENT}'
}
}
}
failure {
echo "post build status: failure"
script {
echo "Build result notify policy is: ${params.BUILD_RESULT_NOTIFY}"
if (params.BUILD_RESULT_NOTIFY == 'EMAIL') {
echo 'Sending notify'
emailext to: '${DEFAULT_RECIPIENTS}', subject: '${DEFAULT_SUBJECT}',
body: '${DEFAULT_CONTENT}'
}
}
}
success {
echo "post build status: success"
script {
echo "changed = ${changed}"
if (changed) {
echo "Build result notify policy is: ${params.BUILD_RESULT_NOTIFY}"
if ( params.BUILD_RESULT_NOTIFY == 'EMAIL') {
echo 'Sending notify'
emailext to: '${DEFAULT_RECIPIENTS}', subject: '${DEFAULT_SUBJECT}',
body: '${DEFAULT_CONTENT}'
}
}
if (!env.BRANCH_NAME.startsWith('PR-')) {
configFileProvider([configFile(fileId: 'maven-settings-with-deploy-snapshot', variable: 'MAVEN_SETTINGS')]) {
sh "$MAVEN_HOME/bin/mvn deploy:deploy -B -V -e -s $MAVEN_SETTINGS -Dmaven.test.failure.ignore=true -Dansi.strip -DskipTests=true"
}
}
}
}
}
}