Some checks are pending
Build Multiarch Container Image / call-reusable-workflow (push) Waiting to run
11 lines
No EOL
242 B
Groovy
11 lines
No EOL
242 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Build') {
|
|
agent { label 'linux-aarch64' }
|
|
steps {
|
|
sh "podman build -t docker.io/thallian/atuin:${env.BRANCH_NAME} ."
|
|
}
|
|
}
|
|
}
|
|
} |