Codecov support for Cover.
Go to file
2021-07-28 17:31:10 +01:00
cover Handle branches and tags 2021-07-28 17:31:10 +01:00
.gitignore Initial commit 2015-08-31 16:35:42 -04:00
.travis.yml Updated .travis.yml to build only on v6.6+, as cover now depends on that. 2017-01-07 17:27:22 -06:00
info.rkt up build number 2016-03-24 07:28:09 -05:00
LICENSE Initial commit 2015-08-31 16:35:42 -04:00
README.md Add license scan report and status 2020-08-26 18:07:53 -05:00

Cover Codecov

Build Status codecov.io FOSSA Status

Adds Codecov support to Cover.

Note: The currently supported methods of posting data to Codecov are Travis CI and Gitlab CI.

Use with Travis CI

First enable your repository on Travis and Codecov. Next add cover-codecov to the build-deps of your info.rkt. Then create a .travis.yml in the root of your repository.

# .travis.yml
language: c
sudo: false
env:
  global:
    - RACKET_DIR=~/racket
  matrix:
    - RACKET_VERSION=6.2 # Set this to the version of racket you use

before_install: # Install Racket
  - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket
  - cat ../travis-racket/install-racket.sh | bash
  - export PATH="${RACKET_DIR}/bin:${PATH}"

install: raco pkg install --deps search-auto $TRAVIS_BUILD_DIR # install dependencies

script:
  - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right?

after_success:
  - raco pkg install --deps search-auto cover cover-codecov
  - raco cover -f codecov -d $TRAVIS_BUILD_DIR/coverage . # generate coverage information for coveralls

The above Travis configuration will install any project dependencies, test your project, and report coverage information to Codecov.

For additional Travis configuration information look at Travis Racket.

Use with Gitlab-CI

Like with Travis, except that you should use the Gitlab format of the CI configuration file:

image: frolvlad/alpine-glibc

variables:
  RACKET_DIR: "$HOME/racket"
  RACKET_VERSION: "6.8" # use the desired version of racket

before_script:
  - echo "ipv6" >> /etc/modules
  - apk update
  - apk add git curl bash openssl sqlite-libs
  - git clone https://github.com/greghendershott/travis-racket.git ~/ci-racket
  - cat ~/ci-racket/install-racket.sh | bash # pipe to bash not sh!
  - export PATH="$RACKET_DIR/bin:$PATH" #install-racket.sh can't set for us
  - raco pkg install --auto $CI_PROJECT_DIR

stages:
  - test
  - cover

test:
  stage: test
  script:
    - raco test $CI_PROJECT_DIR

cover:
  stage: cover
  script:
    - raco pkg install --auto cover cover-codecov
    - raco cover -f codecov $CI_PROJECT_DIR

License

FOSSA Status