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 5461bd266a34bd75a9458901f72be7146eda01aa Author: olivier lamy <[email protected]> AuthorDate: Fri Apr 10 10:59:56 2020 +1000 fix node name Signed-off-by: olivier lamy <[email protected]> --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8b26b5a..dc0a883 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { stage( "Parallel Stage" ) { parallel { stage( "Build / Test - JDK8" ) { - agent { node { label 'linux' } } + agent { node { label 'ubuntu' } } 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 'linux' } } + agent { node { label 'ubuntu' } } options { timeout( time: 120, unit: 'MINUTES' ) } steps { mavenBuild( "JDK 11 (latest)", "clean install" ) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
