Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 5 additions and 7 deletions
Showing only changes of commit eb2f4d95b6 - Show all commits

12
Jenkinsfile vendored
View File

@ -34,11 +34,9 @@ pipeline {
sh 'php ./vendor/bin/phpunit --colors=never'
}
}
}
post {
success {
agent any
node {
stage('Coverage') {
agent any
steps {
sh 'php composer.phar run-script coverage'
step([
$class: 'CloverPublisher',
@ -46,7 +44,7 @@ pipeline {
cloverReportFileName: 'build/logs/clover.xml',
])
junit 'build/logs/junit.xml'
}
}
}
}
}
}