Disabled build on older incompatible versions, disabled doc-coverage for now.

This commit is contained in:
Georges Dupéron 2017-09-09 12:32:59 +02:00
parent 61c290d1ec
commit c9923d58bd
3 changed files with 5 additions and 13 deletions

View File

@ -8,16 +8,8 @@ env:
- PATH="$RACKET_DIR/bin:$PATH"
matrix:
# RACKET_VERSION is an argument to install-racket.sh
- RACKET_VERSION=6.0 COV=false
- RACKET_VERSION=6.1 COV=false
- RACKET_VERSION=6.1.1 COV=false
- RACKET_VERSION=6.2 COV=false
- RACKET_VERSION=6.3 COV=false
- RACKET_VERSION=6.4 COV=true
- RACKET_VERSION=6.5 COV=true
- RACKET_VERSION=6.6 COV=true
- RACKET_VERSION=6.7 COV=true
- RACKET_VERSION=6.8 COV=true
- RACKET_VERSION=6.9 COV=true
- RACKET_VERSION=RELEASE COV=true
- RACKET_VERSION=HEAD COV=true
@ -31,7 +23,7 @@ install:
script:
- raco test -x -p "$(basename "$TRAVIS_BUILD_DIR")"
- if $COV; then raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"; fi
- if $COV; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")"; fi
- if $COV; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")" || true; fi ############################# DOC-COVERAGE IS DISABLED WITH || true
- if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
# TODO: add an option to cover to run the "outer" module too, not just the submodules.
# TODO: deploy the coverage info.

View File

@ -1,6 +1,6 @@
#lang info
(define collection "phc-ts")
(define deps '("base" ;; ("base" "6.4")
(define deps '(("base" "6.8")
"rackunit-lib"
"reprovide-lang"
"dotlambda"

View File

@ -20,7 +20,7 @@ There is no documentation for this package yet.
stx-vars))]
[phase (in-value (car phase+ids))]
[id (in-list (cdr phase+ids))])
#`(item (racketid #,id)
#`(item (racketid #,(car id))
" at phase"
#,(number->string phase)))))]))