Moves archiving step
All checks were successful
KnarCraft/FFmpegConvert/master This commit looks good

This commit is contained in:
Kristian Knarvik 2020-02-12 08:07:33 +01:00
parent 458ff9d5d2
commit 12816d6850

2
Jenkinsfile vendored
View File

@ -5,7 +5,6 @@ pipeline {
steps {
echo 'Building...'
sh 'mvn clean & mvn validate & mvn compile'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
stage('Test') {
@ -18,6 +17,7 @@ pipeline {
steps {
echo 'Deploying...'
sh 'mvn clean & mvn compile & mvn package & mvn verify & mvn install'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}