-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
33 lines (30 loc) · 970 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: c
sudo: false
env:
global:
- RACKET_DIR=~/racket
matrix:
- RACKET_VERSION="6.4"
- RACKET_VERSION="6.5"
- RACKET_VERSION="6.6"
- RACKET_VERSION="6.7"
- RACKET_VERSION="6.8"
- RACKET_VERSION="6.9"
- RACKET_VERSION="6.10"
- RACKET_VERSION="6.10.1"
- RACKET_VERSION="6.11"
- RACKET_VERSION="HEAD"
matrix:
allow_failures:
- env: RACKET_VERSION="HEAD"
before_install:
- git clone https://github.com/greghendershott/travis-racket.git ../travis-racket
- cat ../travis-racket/install-racket.sh | bash
- export PATH="${RACKET_DIR}/bin:${PATH}"
- raco pkg install --auto cover cover-codecov
install:
- raco pkg install --auto lens-common/ lens-data/ lens-lib/ lens-unstable/ lens-doc/ lens/
script:
- raco test -p lens-common lens-data lens-lib lens-unstable lens-doc lens
- raco cover -f codecov -d $TRAVIS_BUILD_DIR/coverage -p lens-common lens-data lens-lib lens-unstable lens-doc lens
- raco setup