FFmpegConvert/Jenkinsfile

20 lines
358 B
Plaintext
Raw Normal View History

2020-02-10 23:17:08 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
}
}
stage('Test') {
steps {
echo 'Testing...'
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
}
}
}
}