Minecraft-Server-Launcher/Jenkinsfile
Kristian Knarvik a5db6b3a70
All checks were successful
KnarCraft/Minecraft-Server-Launcher/pipeline/head This commit looks good
Prevents tests from being re-run during deployment stage
2020-08-17 12:24:33 +02:00

24 lines
584 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 verify -Dmaven.test.skip=true'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}