forked from arnaugarcia/sallefy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
executable file
·43 lines (34 loc) · 957 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env groovy
node {
jdk = tool name: 'JDK9'
env.JAVA_HOME = "${jdk}"
stage('checkout') {
checkout scm
}
stage('check java') {
sh "${jdk}/bin/java -version"
}
stage('clean') {
sh "chmod +x mvnw"
sh "./mvnw -ntp clean"
}
stage('install tools') {
sh "./mvnw -ntp com.github.eirslett:frontend-maven-plugin:install-node-and-npm -DnodeVersion=v10.16.3 -DnpmVersion=6.11.3"
}
stage('npm install') {
sh "./mvnw -ntp com.github.eirslett:frontend-maven-plugin:npm"
}
stage('backend tests') {
try {
sh "./mvnw -ntp verify"
} catch(err) {
throw err
} finally {
junit '**/target/test-results/**/TEST-*.xml'
}
}
stage('packaging') {
sh "./mvnw -ntp verify -Pprod,war,swagger -DskipTests"
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}