Build packages for the aarch64 and armhf architectures in the Jenkinsfile

This commit is contained in:
Username404 2021-08-15 17:19:37 +02:00
parent e874cbdf32
commit 4f0fa09cd9
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

2
Jenkinsfile vendored
View File

@ -27,6 +27,8 @@ pipeline { // Multi-branch pipeline script for Yerbacon.
sh 'strip ./cmake-build-release/ybcon'
cpack installation: 'Main', workingDir: 'cmake-build-release'
buildTarget('arm-linux-gnueabi', 'armv4l', 'armel')
buildTarget('arm-linux-gnueabihf', 'armv7hl', 'armhf')
buildTarget('aarch64-linux-gnu', 'aarch64', 'arm64')
}
}
stage('Build for other platforms') {