FFmpegConvert/Jenkinsfile
EpicKnarvik97 fd55abec4d
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Tries fixing maven build errors by cleaning
2020-02-11 20:34:20 +01:00

23 lines
559 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 clean & mvn test'
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
sh 'mvn clean & mvn compile & mvn package & mvn verify & mvn install & mvn deploy'
}
}
}
}