32 lines
751 B
YAML
32 lines
751 B
YAML
langauge: c
|
|
sudo: false
|
|
env:
|
|
global:
|
|
- RACKET_DIR=~/racket
|
|
matrix:
|
|
- RACKET_VERSION=6.1.1
|
|
- RACKET_VERSION=6.2
|
|
- RACKET_VERSION=6.2.1
|
|
- RACKET_VERSION=6.3
|
|
- RACKET_VERSION=6.4
|
|
- RACKET_VERSION=HEAD
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
before_install:
|
|
- 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:
|
|
- git clone https://github.com/florence/cover ../cover
|
|
- raco pkg install --deps search-auto ../cover/
|
|
- raco pkg install --deps search-auto $TRAVIS_BUILD_DIR
|
|
|
|
script:
|
|
- raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right?
|
|
|
|
after_success:
|
|
- raco cover -f codecov .
|