summaryrefslogblamecommitdiffstats
path: root/uploadCoverage.sh
blob: 3c50dc2f584562a65e8a441ead42952afe79b91b (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 sh -c 'cp {} $(dirname {})/../$(basename {})' \;
	coveralls --exclude lib --exclude Android --gcov-options -q
fi