Update Racket versions

Also update the commented-out example of packages:

- No need to `cd`; can run `raco pkg install` in the repo dir.

- Add a step to check the package deps.
This commit is contained in:
Greg Hendershott 2017-04-10 23:57:24 -04:00
parent de009a9e0f
commit daf965ac9c

View File

@ -22,13 +22,15 @@ env:
# versions. # versions.
# #
# The RELEASE snapshot is only available during the release process. # The RELEASE snapshot is only available during the release process.
- RACKET_VERSION=5.3.4
- RACKET_VERSION=5.3.5
- RACKET_VERSION=5.92
- RACKET_VERSION=6.0
- RACKET_VERSION=6.1 - RACKET_VERSION=6.1
- RACKET_VERSION=6.1.1 - RACKET_VERSION=6.1.1
- RACKET_VERSION=6.2 - RACKET_VERSION=6.2
- 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 - RACKET_VERSION=HEAD
- RACKET_VERSION=RELEASE - RACKET_VERSION=RELEASE
@ -54,19 +56,16 @@ install:
before_script: before_script:
# Here supply steps such as raco make, raco test, etc. # Here supply steps such as raco make, raco test, etc.
#
# Tip: Use `raco pkg install --deps search-auto <pkg>` to install any
# required packages without getting stuck on a confirmation prompt.
script: script:
- raco make main.rkt - raco make main.rkt
- raco test -x . - raco test -x .
# NOTE: If your repo is a Racket package with an info.rkt that # OR: If your repo is a Racket package with an info.rkt that includes
# includes some `deps`, the following is more elegant: # some `deps`:
# #
# script: # script:
# - cd .. # Travis did a cd into the dir. Back up, for the next: # - raco pkg install --deps search-auto
# - raco pkg install --deps search-auto --link <pkg> # - raco setup -D --check-pkg-deps <your-package-name>
# - raco test -x -p <pkg> # - raco test -x -p <your-package-name>
after_script: after_script: