meta/Jenkinsfile

11 lines
93 B
Groovy

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