-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
30 lines (26 loc) · 845 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
language: c
env:
global:
- RACKET_DIR: '~/racket'
matrix:
- RACKET_VERSION: 6.3
- 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: HEAD
before_install:
- git clone https://github.com/greghendershott/travis-racket.git
- cat travis-racket/install-racket.sh | bash
- export PATH="${RACKET_DIR}/bin:${PATH}"
install:
- raco pkg install --installation --auto --link
$TRAVIS_BUILD_DIR/functional-lib
$TRAVIS_BUILD_DIR/functional-doc
$TRAVIS_BUILD_DIR/functional-test
- raco pkg install --installation --auto cover cover-coveralls
script:
- raco test -ep functional-lib functional-test
- raco cover -bf coveralls -d $TRAVIS_BUILD_DIR/coverage -p functional-lib functional-test