meta/Jenkinsfile

11 lines
95 B
Plaintext
Raw Permalink Normal View History

2019-07-17 13:26:36 -04:00
pipeline {
agent any
stages {
2019-07-17 13:31:51 -04:00
stage('Build') {
2019-07-17 13:26:36 -04:00
steps {
sh "echo lol"
}
}
}
}