FFmpegConvert/Jenkinsfile

28 lines
576 B
Plaintext
Raw Normal View History

2020-02-10 23:17:08 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
mvn clean
mvn validate
mvn compile
2020-02-10 23:17:08 +01:00
}
}
stage('Test') {
steps {
echo 'Testing...'
mvn test
2020-02-10 23:17:08 +01:00
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
mvn package
mvn verify
mvn install
mvn deploy
2020-02-10 23:17:08 +01:00
}
}
}
}