Finish Jenkins builds even when CPack failures are present.
This commit is contained in:
parent
d40e85eb06
commit
cbcacfe52f
|
@ -22,9 +22,9 @@ pipeline {
|
||||||
cmake arguments: '--build ./cmake-build-release --target ybcon -- -j 9', installation: 'Main'
|
cmake arguments: '--build ./cmake-build-release --target ybcon -- -j 9', installation: 'Main'
|
||||||
cmake arguments: '--build ./cmake-build-release-win32 --target ybcon -- -j 9', installation: 'Main'
|
cmake arguments: '--build ./cmake-build-release-win32 --target ybcon -- -j 9', installation: 'Main'
|
||||||
sh 'strip ./cmake-build-*/ybcon'
|
sh 'strip ./cmake-build-*/ybcon'
|
||||||
cpack installation: 'Main', workingDir: 'cmake-build-release'
|
catchError { cpack installation: 'Main', workingDir: 'cmake-build-release' }
|
||||||
cpack installation: 'Main', workingDir: 'cmake-build-release-arm'
|
catchError { cpack installation: 'Main', workingDir: 'cmake-build-release-arm' }
|
||||||
cpack installation: 'Main', workingDir: 'cmake-build-release-win32'
|
catchError { cpack installation: 'Main', workingDir: 'cmake-build-release-win32' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
|
|
Loading…
Reference in New Issue