jenkins-test/Jenkinsfile

12 lines
150 B
Text
Raw Normal View History

2020-03-28 22:15:36 +00:00
pipeline {
agent any
stages {
stage('build') {
steps {
echo 'Building..'
}
}
}
}