www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

.travis.yml (755B)


      1 langauge: c
      2 sudo: false
      3 env:
      4   global:
      5     - RACKET_DIR=~/racket
      6   matrix:
      7     - RACKET_VERSION=6.1.1
      8     - RACKET_VERSION=6.2
      9     - RACKET_VERSION=6.2.1
     10     - RACKET_VERSION=6.3
     11     - RACKET_VERSION=6.4
     12     - RACKET_VERSION=6.5
     13 
     14 before_install:
     15   - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket
     16   - cat ../travis-racket/install-racket.sh | bash
     17   - export PATH="${RACKET_DIR}/bin:${PATH}"
     18   - raco pkg install --deps search-auto cover cover-coveralls
     19 
     20 install: raco pkg install --deps search-auto $TRAVIS_BUILD_DIR # install dependencies
     21 
     22 script:
     23  - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right?
     24  - raco cover -f coveralls -d $TRAVIS_BUILD_DIR/coverage . # generate coverage information for coveralls