| 
									
										
										
										
											2017-05-17 16:22:58 +02:00
										 |  |  | #!/bin/bash | 
					
						
							|  |  |  | # Issue:  https://github.com/mattn/goveralls/issues/20 | 
					
						
							|  |  |  | # Source: https://github.com/uber/go-torch/blob/63da5d33a225c195fea84610e2456d5f722f3963/.test-cover.sh | 
					
						
							|  |  |  | CI=$1 | 
					
						
							| 
									
										
										
										
											2017-05-17 18:46:32 +02:00
										 |  |  | TOKEN=$2 | 
					
						
							| 
									
										
										
										
											2017-05-17 16:22:58 +02:00
										 |  |  | echo "run for $CI" | 
					
						
							| 
									
										
										
										
											2017-05-17 18:46:32 +02:00
										 |  |  | echo "with $(go version)" | 
					
						
							| 
									
										
										
										
											2017-05-17 16:22:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | echo "mode: count" > profile.cov | 
					
						
							|  |  |  | FAIL=0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Standard go tooling behavior is to ignore dirs with leading underscors | 
					
						
							|  |  |  | for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -type d); | 
					
						
							|  |  |  | do | 
					
						
							|  |  |  |   if ls $dir/*.go &> /dev/null; then | 
					
						
							|  |  |  |     go test -p 1 -v -covermode=count -coverprofile=profile.tmp $dir || FAIL=$? | 
					
						
							|  |  |  |     if [ -f profile.tmp ] | 
					
						
							|  |  |  |     then | 
					
						
							|  |  |  |       tail -n +2 < profile.tmp >> profile.cov | 
					
						
							|  |  |  |       rm profile.tmp | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Failures have incomplete results, so don't send | 
					
						
							|  |  |  | if [ "$FAIL" -eq 0 ]; then | 
					
						
							| 
									
										
										
										
											2017-05-17 18:46:32 +02:00
										 |  |  |   goveralls -v -coverprofile=profile.cov -service=$CI -repotoken=$TOKEN | 
					
						
							| 
									
										
										
										
											2017-05-17 16:22:58 +02:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit $FAIL |