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