FFmpegConvert/Jenkinsfile
EpicKnarvik97 1887d7c1fe
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Updates Jenkinsfile
2020-02-11 18:54:11 +01:00

23 lines
521 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
sh 'mvn clean & mvn validate & mvn compile'
}
}
stage('Test') {
steps {
echo 'Testing...'
sh 'mvn test'
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
sh 'mvn package & mvn verify & mvn install & mvn deploy'
}
}
}
}