diff --git a/Jenkinsfile b/Jenkinsfile index 899ed55..aeb8846 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,9 +18,9 @@ pipeline { // Multi-branch pipeline script for Yerbacon. cmakeBuild buildDir: 'cmake-build-release', buildType: 'release', cleanBuild: true, installation: 'Main' cmakeBuild buildDir: 'cmake-build-release-arm', buildType: 'release', cleanBuild: true, installation: 'Main', cmakeArgs: '-DCMAKE_C_COMPILER=/usr/bin/arm-linux-gnueabi-gcc -DCMAKE_CXX_COMPILER=/usr/bin/arm-linux-gnueabi-g++ -DCMAKE_LINKER=/usr/bin/arm-linux-gnueabi-ld.gold -DCMAKE_AR=/usr/bin/arm-linux-gnueabi-ar -DCPACK_RPM_PACKAGE_ARCHITECTURE=armv4l -DCPACK_DEBIAN_PACKAGE_ARCHITECTURE=armel' - cmake arguments: '--build ./cmake-build-release --target ybcon -- -j 4', installation: 'Main' + cmake arguments: '--build ./cmake-build-release --target ybcon', installation: 'Main' sh 'strip ./cmake-build-release/ybcon' - cmake arguments: '--build ./cmake-build-release-arm --target ybcon -- -j 4', installation: 'Main' + cmake arguments: '--build ./cmake-build-release-arm --target ybcon', installation: 'Main' } } stage('Build for other platforms') {