This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git
commit 31a9f2177e60a583898c6ce5cfce05232f51306b Author: olivier lamy <ol...@apache.org> AuthorDate: Fri Apr 10 10:57:15 2020 +1000 fix more names Signed-off-by: olivier lamy <ol...@apache.org> --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0fb0afd..8b26b5a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { stage( "Parallel Stage" ) { parallel { stage( "Build / Test - JDK8" ) { - agent { node { label 'ubuntu' } } + agent { node { label 'linux' } } options { timeout( time: 120, unit: 'MINUTES' ) } steps { mavenBuild( "JDK 1.8 (latest)", "clean install" ) @@ -23,7 +23,7 @@ pipeline { } } stage( "Build / Test - JDK11" ) { - agent { node { label 'ubuntu' } } + agent { node { label 'linux' } } options { timeout( time: 120, unit: 'MINUTES' ) } steps { mavenBuild( "JDK 11 (latest)", "clean install" ) @@ -46,7 +46,7 @@ pipeline { * @return the Jenkinsfile step representing a maven build */ def mavenBuild(jdk, cmdline) { - def mvnName = 'maven3' + def mvnName = 'Maven 3.6.3' //def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // ".repository" // //def settingsName = 'oss-settings.xml' def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true' --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org