www

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

.travis.yml (911B)


      1 language: c
      2 
      3 sudo: false
      4 
      5 env:
      6   global:
      7    - RACKET_DIR=~/racket
      8   matrix:
      9    #- RACKET_VERSION=6.1.1
     10    #- RACKET_VERSION=6.2
     11    #- RACKET_VERSION=6.2.1
     12    #- RACKET_VERSION=6.3
     13    - RACKET_VERSION=6.4
     14    - RACKET_VERSION=6.5
     15    - RACKET_VERSION=6.7
     16    - RACKET_VERSION=6.8
     17    - RACKET_VERSION=6.9
     18    - RACKET_VERSION=6.10
     19    - RACKET_VERSION=6.10.1
     20    - RACKET_VERSION=6.11
     21    - RACKET_VERSION=6.12
     22    - RACKET_VERSION=7.0
     23    - RACKET_VERSION=7.1
     24    - RACKET_VERSION=7.2
     25    - RACKET_VERSION=HEAD
     26 
     27 matrix:
     28   allow_failures:
     29   # - env: RACKET_VERSION=HEAD
     30   fast_finish: true
     31 
     32 before_install:
     33  - cd ..
     34  - git clone https://github.com/greghendershott/travis-racket.git
     35  - cat travis-racket/install-racket.sh | bash # pipe to bash not sh!
     36  - export PATH="${RACKET_DIR}/bin:${PATH}"
     37 
     38 install:
     39 
     40 before_script:
     41 
     42 script:
     43  - raco pkg install -j 2 --deps search-auto --link aful
     44  - raco test -r -p aful
     45 
     46 after_script: