This is an automated email from the ASF dual-hosted git repository.
elecharny pushed a commit to branch 2.2.X
in repository https://gitbox.apache.org/repos/asf/mina.git
The following commit(s) were added to refs/heads/2.2.X by this push:
new 6731badd2 Fixed a windows build for JDK 1.8
6731badd2 is described below
commit 6731badd2097b5decbed761a0e0935662d3ebb15
Author: emmanuel lecharny <[email protected]>
AuthorDate: Thu Sep 12 09:26:20 2024 +0200
Fixed a windows build for JDK 1.8
---
Jenkinsfile | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 433d4812d..7b4c1e8b0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -18,10 +18,12 @@
*/
pipeline {
agent any
+
tools {
maven 'maven_3_latest'
jdk params.jdkVersion
}
+
options {
// Configure an overall timeout for the build of ten hours.
timeout(time: 20, unit: 'HOURS')
@@ -29,6 +31,7 @@ pipeline {
buildDiscarder(logRotator(numToKeepStr: '5', artifactNumToKeepStr: '5'))
disableConcurrentBuilds()
}
+
parameters {
choice(name: 'nodeLabel', choices: ['ubuntu', 'arm', 'Windows'])
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'])
@@ -36,10 +39,12 @@ pipeline {
booleanParam(name: 'sonarEnabled', defaultValue: false)
booleanParam(name: 'testsEnabled', defaultValue: true)
}
+
triggers {
cron('@weekly')
pollSCM('@daily')
}
+
stages {
stage('Initialization') {
steps {
@@ -183,6 +188,6 @@ pipeline {
sh 'mvn clean install -Pserial'
}
}
+---*/
}
-*/
}