jenkins-test/Jenkinsfile
erki 16ddb4e1da
Some checks reported errors
gitea/jenkins-test/pipeline/head Something is wrong with the build of this commit
3
2022-01-23 16:25:08 +00:00

12 lines
172 B
Groovy

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