Pass booleans in the second stage of the Jenkinsfile
This commit is contained in:
parent
4fcfcfaa49
commit
8c5d36aaa4
|
@ -36,9 +36,9 @@ pipeline { // Multi-branch pipeline script for Yerbacon.
|
||||||
stage('Build for other platforms') {
|
stage('Build for other platforms') {
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
buildTarget('x86_64-w64-mingw32', 'x86_64', 'amd64', 'windows')
|
buildTarget('x86_64-w64-mingw32', 'x86_64', 'amd64', true, 'windows')
|
||||||
buildTarget('i686-w64-mingw32', 'i386', 'i386', 'windows')
|
buildTarget('i686-w64-mingw32', 'i386', 'i386', true, 'windows')
|
||||||
buildTarget('armv7-w64-mingw32', 'armv7hl', 'armhf', 'windows')
|
buildTarget('armv7-w64-mingw32', 'armv7hl', 'armhf', true, 'windows')
|
||||||
buildTarget('aarch64-w64-mingw32', 'aarch64', 'arm64', false, 'windows')
|
buildTarget('aarch64-w64-mingw32', 'aarch64', 'arm64', false, 'windows')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue