Skip to content

Commit 6731bad

Browse files
committed
Fixed a windows build for JDK 1.8
1 parent 1c697be commit 6731bad

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Jenkinsfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,33 @@
1818
*/
1919
pipeline {
2020
agent any
21+
2122
tools {
2223
maven 'maven_3_latest'
2324
jdk params.jdkVersion
2425
}
26+
2527
options {
2628
// Configure an overall timeout for the build of ten hours.
2729
timeout(time: 20, unit: 'HOURS')
2830
// When we have test-fails e.g. we don't need to run the remaining steps
2931
buildDiscarder(logRotator(numToKeepStr: '5', artifactNumToKeepStr: '5'))
3032
disableConcurrentBuilds()
3133
}
34+
3235
parameters {
3336
choice(name: 'nodeLabel', choices: ['ubuntu', 'arm', 'Windows'])
3437
choice(name: 'jdkVersion', choices: ['jdk_1.8_latest', 'jdk_11_latest', 'jdk_17_latest', 'jdk_21_latest', 'jdk_22_latest', 'jdk_1.8_latest_windows', 'jdk_11_latest_windows', 'jdk_17_latest_windows', 'jdk_21_latest_windows', 'jdk_22_latest_windows'])
3538
booleanParam(name: 'deployEnabled', defaultValue: false)
3639
booleanParam(name: 'sonarEnabled', defaultValue: false)
3740
booleanParam(name: 'testsEnabled', defaultValue: true)
3841
}
42+
3943
triggers {
4044
cron('@weekly')
4145
pollSCM('@daily')
4246
}
47+
4348
stages {
4449
stage('Initialization') {
4550
steps {
@@ -183,6 +188,6 @@ pipeline {
183188
sh 'mvn clean install -Pserial'
184189
}
185190
}
191+
---*/
186192
}
187-
*/
188193
}

0 commit comments

Comments
 (0)