summaryrefslogblamecommitdiffstats
path: root/uploadCoverage.sh
blob: ad3ea070ebeb440af915bac525ea44ed08016a49 (plain) (tree)
1
2
3
4
5
6
7
8
9

                   
                                                  
            
                                                                                     
                                                                 
  

 
#!/usr/bin/env bash

if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
	then
	find tests -type f -name '*.gcda' -exec cp {} $(dirname {})/../$(basename {})
	coveralls --exclude lib --exclude tests --gcov-options -q
fi