From 4f0fa09cd9592e97457df445d4586f5e9882eed0 Mon Sep 17 00:00:00 2001 From: Username404 Date: Sun, 15 Aug 2021 17:19:37 +0200 Subject: [PATCH] Build packages for the aarch64 and armhf architectures in the Jenkinsfile --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 36a1231..2574bd5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') {