cuda-samples/Jenkinsfile
2018-11-13 10:14:00 -06:00

12 lines
150 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
}
}