Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d4f4df6d9d | ||
![]() |
b0efb4777f | ||
![]() |
d0cbd1fcc3 | ||
![]() |
8e31f5babb | ||
![]() |
ff34f6f2f2 | ||
![]() |
8fcf4388f5 | ||
![]() |
7aebfbcd88 |
35
.travis.yml
35
.travis.yml
|
@ -8,20 +8,29 @@ env:
|
||||||
- PATH="$RACKET_DIR/bin:$PATH"
|
- PATH="$RACKET_DIR/bin:$PATH"
|
||||||
matrix:
|
matrix:
|
||||||
# RACKET_VERSION is an argument to install-racket.sh
|
# RACKET_VERSION is an argument to install-racket.sh
|
||||||
- RACKET_VERSION=6.8
|
- RACKET_VERSION=6.8 COVER=false
|
||||||
- RACKET_VERSION=6.9
|
- RACKET_VERSION=6.9 COVER=true
|
||||||
- RACKET_VERSION=6.10
|
- RACKET_VERSION=6.10 COVER=true
|
||||||
- RACKET_VERSION=6.10.1
|
- RACKET_VERSION=6.10.1 COVER=true
|
||||||
- RACKET_VERSION=6.11
|
- RACKET_VERSION=6.11 COVER=true
|
||||||
- RACKET_VERSION=6.12
|
- RACKET_VERSION=6.12 COVER=true
|
||||||
- RACKET_VERSION=7.0
|
- RACKET_VERSION=7.0 COVER=true
|
||||||
- RACKET_VERSION=7.1
|
- RACKET_VERSION=7.1 COVER=true
|
||||||
- RACKET_VERSION=7.2
|
- RACKET_VERSION=7.2 COVER=true
|
||||||
- RACKET_VERSION=HEAD
|
- RACKET_VERSION=7.3 COVER=true
|
||||||
|
- RACKET_VERSION=7.4 COVER=true
|
||||||
|
- RACKET_VERSION=7.5 COVER=true
|
||||||
|
- RACKET_VERSION=7.6 COVER=true
|
||||||
|
- RACKET_VERSION=7.7 COVER=true
|
||||||
|
- RACKET_VERSION=7.8 COVER=true
|
||||||
|
- RACKET_VERSION=7.9 COVER=true
|
||||||
|
- RACKET_VERSION=8.0 COVER=true
|
||||||
|
- RACKET_VERSION=8.0 RACKET_CS=1 COVER=true
|
||||||
|
- RACKET_VERSION=HEAD COVER=true
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash
|
- curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash
|
||||||
- raco pkg install --deps search-auto doc-coverage cover cover-codecov # or cover-coveralls
|
- if $COVER; then raco pkg install --deps search-auto doc-coverage cover cover-codecov; fi # or cover-coveralls
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- raco pkg install --deps search-auto -j 2
|
- raco pkg install --deps search-auto -j 2
|
||||||
|
@ -29,7 +38,7 @@ install:
|
||||||
script:
|
script:
|
||||||
- raco test -r -p "$(basename "$TRAVIS_BUILD_DIR")"
|
- raco test -r -p "$(basename "$TRAVIS_BUILD_DIR")"
|
||||||
- raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"
|
- raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"
|
||||||
- raco doc-coverage subtemplate/light
|
- if $COVER; then raco doc-coverage subtemplate/light; fi
|
||||||
- raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true
|
- if $COVER; 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: add an option to cover to run the "outer" module too, not just the submodules.
|
||||||
# TODO: deploy the coverage info.
|
# TODO: deploy the coverage info.
|
|
@ -1,5 +1,5 @@
|
||||||
anaphoric
|
anaphoric
|
||||||
Copyright (c) 2016-2017 Georges Dupéron
|
Copyright (c) 2016-2017 Suzanne Soy
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[](https://travis-ci.org/jsmaniac/subtemplate)
|
[](https://travis-ci.org/jsmaniac/subtemplate)
|
||||||
[](http://jsmaniac.github.io/travis-stats/#jsmaniac/subtemplate)
|
[](http://jsmaniac.github.io/travis-stats/#jsmaniac/subtemplate)
|
||||||
[](http://docs.racket-lang.org/subtemplate/)
|
[](http://docs.racket-lang.org/subtemplate/)
|
||||||
[](https://github.com/jsmaniac/subtemplate/issues)
|
[](https://github.com/jsmaniac/subtemplate/issues)
|
||||||
|
|
2
info.rkt
2
info.rkt
|
@ -16,4 +16,4 @@
|
||||||
(define scribblings '(("scribblings/subtemplate.scrbl" () (parsing-library))))
|
(define scribblings '(("scribblings/subtemplate.scrbl" () (parsing-library))))
|
||||||
(define pkg-desc "Various enhancements on syntax templates")
|
(define pkg-desc "Various enhancements on syntax templates")
|
||||||
(define version "1.2")
|
(define version "1.2")
|
||||||
(define pkg-authors '("Georges Dupéron"))
|
(define pkg-authors '(|Suzanne Soy|))
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
(subtract-in racket/base subtemplate)]]
|
(subtract-in racket/base subtemplate)]]
|
||||||
|
|
||||||
@title[#:style (with-html5 manual-doc-style)]{Subtemplate}
|
@title[#:style (with-html5 manual-doc-style)]{Subtemplate}
|
||||||
@author[@author+email["Georges Dupéron" "georges.duperon@gmail.com"]]
|
@author[@author+email["Suzanne Soy" "racket@suzanne.soy"]]
|
||||||
|
|
||||||
This library should be considered experimental. Although most of the syntax
|
This library should be considered experimental. Although most of the syntax
|
||||||
should work in the same way in future versions, the behaviour of some corner
|
should work in the same way in future versions, the behaviour of some corner
|
||||||
|
|
Loading…
Reference in New Issue
Block a user