www

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

.travis.yml (737B)


      1 language: c
      2 sudo: false
      3 env:
      4   global:
      5     - RACKET_DIR=~/racket
      6   matrix:
      7     - RACKET_VERSION=6.4 RUN_COVER=true
      8     - RACKET_VERSION=6.5 RUN_COVER=true
      9     - RACKET_VERSION=6.6
     10     - RACKET_VERSION=HEAD
     11 
     12 before_install:
     13   - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket
     14   - cat ../travis-racket/install-racket.sh | bash
     15   - export PATH="${RACKET_DIR}/bin:${PATH}"
     16   - raco pkg install --auto cover cover-coveralls doc-coverage
     17 
     18 install:
     19   - raco pkg install --auto $TRAVIS_BUILD_DIR
     20 
     21 script:
     22   - raco test -c generic-syntax-expanders
     23   - raco doc-coverage generic-syntax-expanders
     24   - if [ -n "$RUN_COVER" ]; then raco cover -f coveralls -d $TRAVIS_BUILD_DIR/coverage -c generic-syntax-expanders; fi