From f23d0ad6a82811b5cac47c1641924367c2028b1d Mon Sep 17 00:00:00 2001 From: Jeremy Poulin Date: Mon, 1 Jul 2019 13:45:14 -0400 Subject: [PATCH] Failure should occur if any are fails by default, and upgrade provisioner to latest version --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b80d92d..80f7b77 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ properties( name: 'LIBRARIES_REPO' ), string( - defaultValue: 'v1.2.2', + defaultValue: 'v1.3.0', description: 'Git reference to the branch or tag of shared libraries.', name: 'LIBRARIES_REF' ), @@ -79,8 +79,6 @@ MAQEAPI.v1.runParallelMultiArchTest( { Exception exception, def host -> def error = "Exception ${exception} occured on ${host.arch}\n" errorMessages += error - if (host.arch.equals("x86_64") || host.arch.equals("ppc64le")) { - currentBuild.result = 'FAILURE' - } + currentBuild.result = 'FAILURE' } )