www

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

.travis.yml (713B)


      1 language: c
      2 
      3 sudo: false
      4 
      5 env:
      6   global:
      7    - RACKET_DIR=~/racket
      8   matrix:
      9    - RACKET_VERSION=6.0.1
     10    - RACKET_VERSION=6.1
     11    - RACKET_VERSION=6.1.1
     12    - RACKET_VERSION=6.2
     13    - RACKET_VERSION=6.2.1
     14    - RACKET_VERSION=6.3
     15    - RACKET_VERSION=6.4
     16    - RACKET_VERSION=6.5
     17    - RACKET_VERSION=HEAD
     18 
     19 matrix:
     20   allow_failures:
     21    - env: RACKET_VERSION=HEAD
     22   fast_finish: true
     23 
     24 before_install:
     25  - cd ..
     26  - git clone https://github.com/greghendershott/travis-racket.git
     27  - cat travis-racket/install-racket.sh | bash # pipe to bash not sh!
     28  - export PATH="${RACKET_DIR}/bin:${PATH}"
     29 
     30 install:
     31 
     32 before_script:
     33 
     34 script:
     35  - raco pkg install --deps search-auto --link kw-utils
     36  - raco test -x -p kw-utils
     37 
     38 after_script: