mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-14 19:34:54 -05:00
Add tests
This commit is contained in:
parent
5be5c364cd
commit
195650a11b
1 changed files with 9 additions and 0 deletions
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
@ -18,11 +18,20 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('test') {
|
||||||
|
steps {
|
||||||
|
withGradle {
|
||||||
|
sh './gradlew test --no-daemon'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
||||||
cleanWs()
|
cleanWs()
|
||||||
|
junit 'Scissors-Server/build/test-results/test/*.xml'
|
||||||
|
junit 'Scissors-API/build/test-results/test/*.xml'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue