pipeline { agent none stages { stage('Build') { agent { label 'linux-aarch64' } steps { sh "podman build -t docker.io/thallian/atuin:${env.BRANCH_NAME} ." } } } }