From 6dc658664af8e2a984ce3860f2d7bcd56d60b4f8 Mon Sep 17 00:00:00 2001 From: Username404 Date: Sun, 13 Mar 2022 21:49:28 +0100 Subject: [PATCH] Make the stage result 'UNSTABLE' when arm mingw32 targets fail to build in the Jenkinsfile Signed-off-by: Username404 --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 5ec256f..90d1ba8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,6 +54,8 @@ pipeline { // Multi-branch pipeline script for Yerbacon. catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { buildTarget('x86_64-w64-mingw32', 'x86_64', 'amd64', true, windowsSuffix) buildTarget('i686-w64-mingw32', 'i386', 'i386', true, windowsSuffix) + } + catchError(buildResult: 'SUCCESS', stageResult: 'UNSTABLE') { buildTarget('armv7-w64-mingw32', 'armv7hl', 'armhf', true, windowsSuffix) buildTarget('aarch64-w64-mingw32', 'aarch64', 'arm64', false, windowsSuffix) }