SmartPicasso/Jenkinsfile
2020-11-30 23:14:50 +01:00

11 lines
151 B
Groovy

pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Test pipeline'
}
}
}
}