add travis script
This commit is contained in:
parent
ba15bbd32f
commit
4522ccd598
28
.travis.yml
Normal file
28
.travis.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
language: c
|
||||
sudo: false
|
||||
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="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}"
|
||||
|
||||
install:
|
||||
- raco pkg install --auto turnstile
|
||||
|
||||
script:
|
||||
- raco test -p turnstile
|
||||
- raco setup
|
|
@ -1,3 +1,9 @@
|
|||
# macrotypes [](https://travis-ci.org/stchang/macrotypes) [](http://docs.racket-lang.org/turnstile/index.html)
|
||||
|
||||
A Racket language for creating typed embedded DSLs
|
||||
|
||||
`raco pkg install turnstile`
|
||||
|
||||
- all languages from the paper are in implemented with both Racket syntax (in `macrotypes/examples/`) and Turnstile syntax (in `turnstile/examples/`)
|
||||
|
||||
- see `macrotypes/examples/README.md` for language reuse information
|
||||
|
|
Loading…
Reference in New Issue
Block a user