FFmpegConvert/Jenkinsfile
EpicKnarvik97 458ff9d5d2
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Adds archiving
2020-02-12 07:09:55 +01:00

24 lines
627 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
sh 'mvn clean & mvn validate & mvn compile'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
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'
}
}
}
}