atuin/Jenkinsfile
shu 974a6e449e
Some checks are pending
Build Multiarch Container Image / call-reusable-workflow (push) Waiting to run
Update Jenkinsfile
2025-06-03 15:43:28 +00:00

11 lines
No EOL
230 B
Groovy

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