From ce8d1c3e727cd12ffedf7b1f63f0321dae7353d0 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 28 Mar 2020 16:14:03 -0500 Subject: [PATCH] Run on armv7hl agent Although Podman can run containers from other architectures (i.e. arm32v7 on aarch64), this does not allow building binaries for that architecture. As such, to build armv7hl binaries, the job must run on an armv7hl agent. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 884fe7c..bd0e030 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ pipeline { agent { dockerfile { - label 'arm' + label 'armv7hl' filename 'Containerfile' args '-u 0:0 -v /etc/ssh/ssh_known_hosts:/etc/ssh/ssh_known_hosts:ro'