meta/Jenkinsfile

11 lines
95 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh "echo lol"
}
}
}
}