Skip to content

Commit 0fc698a

Browse files
committed
Added a JenkinsFile
1 parent dd403eb commit 0fc698a

File tree

2 files changed

+131
-1
lines changed

2 files changed

+131
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ bin/
1212
.clover
1313
META-INF/
1414
Dockerfile
15-
Jenkinsfile
1615
/.idea/

JenkinsFile

+131
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* https://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
pipeline {
20+
agent none
21+
options {
22+
buildDiscarder(logRotator(numToKeepStr: '10'))
23+
timeout(time: 8, unit: 'HOURS')
24+
}
25+
tools {
26+
maven 'maven_3_latest'
27+
jdk params.jdkVersion
28+
}
29+
options {
30+
// Configure an overall timeout for the build of ten hours.
31+
timeout(time: 20, unit: 'HOURS')
32+
// When we have test-fails e.g. we don't need to run the remaining steps
33+
buildDiscarder(logRotator(numToKeepStr: '5', artifactNumToKeepStr: '5'))
34+
disableConcurrentBuilds()
35+
}
36+
parameters {
37+
choice(name: 'nodeLabel', choices: ['ubuntu', 'arm', 'Windows'])
38+
choice(name: 'jdkVersion', choices: ['jdk_8_latest', 'jdk_11_latest', 'jdk_17_latest', 'jdk_21_latest', 'jdk_22_latest', 'jdk_8_latest_windows', 'jdk_11_latest_windows', 'jdk_17_latest_windows', 'jdk_21_latest_windows', 'jdk_22_latest_windows'])
39+
booleanParam(name: 'deployEnabled', defaultValue: false)
40+
booleanParam(name: 'sonarEnabled', defaultValue: false)
41+
booleanParam(name: 'testsEnabled', defaultValue: true)
42+
}
43+
44+
triggers {
45+
cron('@weekly')
46+
pollSCM('@daily')
47+
}
48+
stages {
49+
stage('Initialization') {
50+
steps {
51+
echo "running on ${env.NODE_NAME}"
52+
echo 'Building branch ' + env.BRANCH_NAME
53+
echo 'Using PATH ' + env.PATH
54+
}
55+
}
56+
57+
stage('Cleanup') {
58+
steps {
59+
echo 'Cleaning up the workspace'
60+
deleteDir()
61+
}
62+
}
63+
64+
stage('Checkout') {
65+
steps {
66+
echo 'Checking out branch ' + env.BRANCH_NAME
67+
checkout scm
68+
}
69+
}
70+
71+
stage('Build JDK 22') {
72+
tools {
73+
jdk "jdk_22_latest"
74+
}
75+
steps {
76+
echo 'Building JDK 22'
77+
sh 'java -version'
78+
sh 'mvn -version'
79+
sh 'mvn clean install -Pserial'
80+
}
81+
}
82+
83+
stage('Build JDK 21') {
84+
tools {
85+
jdk "jdk_21_latest"
86+
}
87+
steps {
88+
echo 'Building JDK 21'
89+
sh 'java -version'
90+
sh 'mvn -version'
91+
sh 'mvn clean install -Pserial'
92+
}
93+
}
94+
95+
stage('Build JDK 17') {
96+
tools {
97+
jdk "jdk_17"
98+
}
99+
steps {
100+
echo 'Building JDK 17'
101+
sh 'java -version'
102+
sh 'mvn -version'
103+
sh 'mvn clean install -Pserial'
104+
}
105+
}
106+
107+
stage('Build JDK 11') {
108+
tools {
109+
jdk "jdk_11"
110+
}
111+
steps {
112+
echo 'Building JDK 11'
113+
sh 'java -version'
114+
sh 'mvn -version'
115+
sh 'mvn clean install -Pserial'
116+
}
117+
}
118+
119+
stage('Build JDK 8') {
120+
tools {
121+
jdk "jdk_8"
122+
}
123+
steps {
124+
echo 'Building JDK 8'
125+
sh 'java -version'
126+
sh 'mvn -version'
127+
sh 'mvn clean install -Pserial'
128+
}
129+
}
130+
}
131+
}

0 commit comments

Comments
 (0)