Rename the second stage of the pipeline in the Jenkinsfile

This commit is contained in:
Username404 2021-08-09 20:55:43 +02:00
parent a875f8ab80
commit e414688156
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

2
Jenkinsfile vendored
View File

@ -23,7 +23,7 @@ pipeline { // Multi-branch pipeline script for Yerbacon.
cmake arguments: '--build ./cmake-build-release-arm --target ybcon -- -j 4', installation: 'Main' cmake arguments: '--build ./cmake-build-release-arm --target ybcon -- -j 4', installation: 'Main'
} }
} }
stage('Cross-compile') { stage('Build for other platforms') {
steps { steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
cmakeBuild buildDir: 'cmake-build-release-win32', buildType: 'release', cleanBuild: true, installation: 'Main', cmakeBuild buildDir: 'cmake-build-release-win32', buildType: 'release', cleanBuild: true, installation: 'Main',