| 1 | language: c |
| 2 | |
| 3 | sudo: false |
| 4 | |
| 5 | env: |
| 6 | global: |
| 7 | - RACKET_DIR=~/racket |
| 8 | matrix: |
| 9 | - RACKET_VERSION=6.3 |
| 10 | - RACKET_VERSION=6.4 |
| 11 | - RACKET_VERSION=6.5 |
| 12 | - RACKET_VERSION=6.6 |
| 13 | - RACKET_VERSION=6.7 |
| 14 | - RACKET_VERSION=6.8 |
| 15 | - RACKET_VERSION=6.9 |
| 16 | - RACKET_VERSION=6.10 |
| 17 | - RACKET_VERSION=6.11 |
| 18 | - RACKET_VERSION=6.12 |
| 19 | - RACKET_VERSION=7.0 |
| 20 | - RACKET_VERSION=7.1 |
| 21 | - RACKET_VERSION=7.2 |
| 22 | - RACKET_VERSION=7.3 |
| 23 | - RACKET_VERSION=7.4 |
| 24 | - RACKET_VERSION=7.5 |
| 25 | - RACKET_VERSION=7.6 |
| 26 | - RACKET_VERSION=7.7 |
| 27 | - RACKET_VERSION=7.8 |
| 28 | - RACKET_VERSION=7.9 |
| 29 | - RACKET_VERSION=HEAD |
| 30 | |
| 31 | matrix: |
| 32 | #allow_failures: |
| 33 | # - env: RACKET_VERSION=HEAD |
| 34 | fast_finish: true |
| 35 | |
| 36 | install: |
| 37 | - bash <(curl https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh) |
| 38 | - export PATH="${RACKET_DIR}/bin:${PATH}" |
| 39 | |
| 40 | script: |
| 41 | - make install |
| 42 | - make test |