diff --git a/Jenkinsfile b/Jenkinsfile index de0048d..6646b3b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent none + agent { label 'linux-aarch64' } environment { GIT_REF = """${sh( returnStdout: true, @@ -8,7 +8,6 @@ pipeline { } stages { stage('Build') { - agent { label 'linux-aarch64' } steps { sh "podman build -t docker.io/thallian/atuin:${env.GIT_REF} ." }