jenkins-test/Jenkinsfile
erki a08b1ffa69
Some checks failed
gitea/jenkins-test/pipeline/head There was a failure building this commit
2
2022-01-23 16:23:56 +00:00

10 lines
133 B
Groovy

pipeline {
agent { label 'docker-ubuntu' }
stage("build") {
steps {
sh 'echo "memes"'
}
}
}