commit c9923d58bd66ad1ea549cf418607172fc0e174c7
parent 61c290d1ecd1737d8c0dee9a965f817880396bfc
Author: Georges Dupéron <georges.duperon@gmail.com>
Date: Sat, 9 Sep 2017 12:32:59 +0200
Disabled build on older incompatible versions, disabled doc-coverage for now.
Diffstat:
3 files changed, 5 insertions(+), 13 deletions(-)
diff --git a/.travis.yml b/.travis.yml
@@ -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.
\ No newline at end of file
diff --git a/info.rkt b/info.rkt
@@ -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"
diff --git a/scribblings/phc-ts.scrbl b/scribblings/phc-ts.scrbl
@@ -20,8 +20,8 @@ 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)
- "at phase"
+ #`(item (racketid #,(car id))
+ " at phase"
#,(number->string phase)))))]))
The following variables are provided: