SI/Jenkinsfile
2020-12-03 16:49:52 +01:00

12 lines
138 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
echo 'building..'
}
}
}
}