Pass booleans in the second stage of the Jenkinsfile

This commit is contained in:
Username404 2021-09-12 14:00:57 +02:00
parent 4fcfcfaa49
commit 8c5d36aaa4
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

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