From 6c390ef652772914eff0e67d9fd842e17a8ba048 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Wed, 1 Apr 2015 22:46:11 -0700 Subject: [PATCH] add travis --- hyphenate/.travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 hyphenate/.travis.yml diff --git a/hyphenate/.travis.yml b/hyphenate/.travis.yml new file mode 100644 index 00000000..d6c6c154 --- /dev/null +++ b/hyphenate/.travis.yml @@ -0,0 +1,25 @@ +# adapted from +# https://github.com/greghendershott/travis-racket/blob/master/.travis.yml +# Thanks Greg! + +language: c +sudo: false + +env: + global: + - RACKET_DIR=~/racket + matrix: + - RACKET_VERSION=6.1.1 + +matrix: + fast_finish: true + +before_install: + - git clone https://github.com/greghendershott/travis-racket.git + - cat travis-racket/install-racket.sh | bash # pipe to bash not sh! + - export PATH="${RACKET_DIR}/bin:${PATH}" #install-racket.sh can't set for us + +script: + - cd .. # Travis did a cd into the dir. Back up, for the next: + - raco pkg install --deps search-auto --link hyphenate + - raco test -p hyphenate \ No newline at end of file