adds jacoco check to Jenkinsfile
This commit is contained in:
parent
ec70357ea0
commit
19a02460e8
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -29,6 +29,16 @@ node {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('backend check') {
|
||||||
|
try {
|
||||||
|
sh "./gradlew check -PnodeInstall --no-daemon"
|
||||||
|
} catch (err) {
|
||||||
|
throw err
|
||||||
|
} finally {
|
||||||
|
archiveArtifacts artifacts: '**/build/reports/jacoco/test/html/', fingerprint: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('frontend tests') {
|
stage('frontend tests') {
|
||||||
try {
|
try {
|
||||||
sh "./gradlew npm_run_test -PnodeInstall --no-daemon"
|
sh "./gradlew npm_run_test -PnodeInstall --no-daemon"
|
||||||
|
Loading…
Reference in New Issue
Block a user