Special case 5.92

This commit is contained in:
Greg Hendershott 2014-01-28 15:07:46 -05:00
parent 118ab5468b
commit e943dff124
2 changed files with 5 additions and 1 deletions

View File

@ -11,10 +11,12 @@ language: c
env: env:
- RACKET_VERSION=5.3.4 - RACKET_VERSION=5.3.4
- RACKET_VERSION=5.3.5 - RACKET_VERSION=5.3.5
- RACKET_VERSION=5.92
- RACKET_VERSION=HEAD - RACKET_VERSION=HEAD
before_install: before_install:
- curl -L https://github.com/greghendershott/travis-racket/releases/download/v0.3/install-racket.sh | sh # - curl -L https://github.com/greghendershott/travis-racket/releases/download/v0.3/install-racket.sh | sh
- curl https://raw.github.com/greghendershott/travis-racket/master/install-racket.sh | sh
install: install:

View File

@ -2,6 +2,8 @@ set -e
if [ "$RACKET_VERSION" = "HEAD" ]; then if [ "$RACKET_VERSION" = "HEAD" ]; then
URL="http://www.cs.utah.edu/plt/snapshots/current/installers/racket-current-x86_64-linux-precise.sh" URL="http://www.cs.utah.edu/plt/snapshots/current/installers/racket-current-x86_64-linux-precise.sh"
elif [ "$RACKET_VERSION" = "5.92" ]; then
URL="http://download.racket-lang.org/installers/5.92/racket-5.92-x86_64-linux-ubuntu-quantal.sh"
else else
URL="http://download.racket-lang.org/installers/${RACKET_VERSION}/racket/racket-${RACKET_VERSION}-bin-x86_64-linux-debian-squeeze.sh" URL="http://download.racket-lang.org/installers/${RACKET_VERSION}/racket/racket-${RACKET_VERSION}-bin-x86_64-linux-debian-squeeze.sh"
fi fi