From 8c5d36aaa4d55c4607ef58df454cc468e95632d2 Mon Sep 17 00:00:00 2001 From: Username404 Date: Sun, 12 Sep 2021 14:00:57 +0200 Subject: [PATCH] Pass booleans in the second stage of the Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7cb048d..a57c895 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,9 +36,9 @@ pipeline { // Multi-branch pipeline script for Yerbacon. stage('Build for other platforms') { steps { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - buildTarget('x86_64-w64-mingw32', 'x86_64', 'amd64', 'windows') - buildTarget('i686-w64-mingw32', 'i386', 'i386', 'windows') - buildTarget('armv7-w64-mingw32', 'armv7hl', 'armhf', 'windows') + buildTarget('x86_64-w64-mingw32', 'x86_64', 'amd64', true, 'windows') + buildTarget('i686-w64-mingw32', 'i386', 'i386', true, 'windows') + buildTarget('armv7-w64-mingw32', 'armv7hl', 'armhf', true, 'windows') buildTarget('aarch64-w64-mingw32', 'aarch64', 'arm64', false, 'windows') } }