SmartPicasso/Jenkinsfile

11 lines
151 B
Plaintext
Raw Normal View History

2020-11-30 23:14:50 +01:00
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Test pipeline'
}
}
}
}