eive-obsw/Jenkinsfile

10 lines
185 B
Plaintext
Raw Normal View History

2021-05-28 20:18:08 +02:00
pipeline {
agent { docker { image 'alpine:latest' } }
stages {
stage('build') {
steps {
sh 'echo Hello World'
}
}
}
}