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') } }