49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
cd "$(dirname "$0")/.."
 | 
						|
 | 
						|
annotate() {
 | 
						|
  ${BUILDKITE:-false} && {
 | 
						|
    buildkite-agent annotate "$@"
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
ci/affects-files.sh \
 | 
						|
  .rs$ \
 | 
						|
  Cargo.lock$ \
 | 
						|
  Cargo.toml$ \
 | 
						|
  ^ci/rust-version.sh \
 | 
						|
  ^ci/test-coverage.sh \
 | 
						|
  ^scripts/coverage.sh \
 | 
						|
|| {
 | 
						|
  annotate --style info --context test-coverage \
 | 
						|
    "Coverage skipped as no .rs files were modified"
 | 
						|
  exit 0
 | 
						|
}
 | 
						|
 | 
						|
source ci/upload-ci-artifact.sh
 | 
						|
source scripts/ulimit-n.sh
 | 
						|
 | 
						|
scripts/coverage.sh
 | 
						|
 | 
						|
report=coverage-"${CI_COMMIT:0:9}".tar.gz
 | 
						|
mv target/cov/report.tar.gz "$report"
 | 
						|
upload-ci-artifact "$report"
 | 
						|
 | 
						|
gzip -f target/cov/coverage-stderr.log
 | 
						|
upload-ci-artifact target/cov/coverage-stderr.log.gz
 | 
						|
 | 
						|
annotate --style success --context lcov-report \
 | 
						|
  "lcov report: <a href=\"artifact://$report\">$report</a>"
 | 
						|
 | 
						|
echo "--- codecov.io report"
 | 
						|
if [[ -z "$CODECOV_TOKEN" ]]; then
 | 
						|
  echo "^^^ +++"
 | 
						|
  echo CODECOV_TOKEN undefined, codecov.io upload skipped
 | 
						|
else
 | 
						|
  bash <(curl -s https://codecov.io/bash) -X gcov -f target/cov/lcov.info
 | 
						|
 | 
						|
  annotate --style success --context codecov.io \
 | 
						|
    "CodeCov report: https://codecov.io/github/solana-labs/solana/commit/${CI_COMMIT:0:9}"
 | 
						|
fi
 |