Skip to content
Snippets Groups Projects
Commit 27b36b56 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Update Jenkinsfile

parent 5f6554ad
No related branches found
No related tags found
No related merge requests found
#!groovy
node {
try {
stage 'Checkout'
stage('Checkout'){
checkout scm
stage 'Test'
}
stage('Test'){
sh 'mvn test'
stage 'Build'
}
stage('Build'){
sh 'mvn install -DskipTests=true'
}
}
catch (err) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment