From e7739e0117cdedfed8024a1c0870f5143ae02710 Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Thu, 6 Jun 2019 16:27:45 -0400 Subject: [PATCH] Improve comments for "HEAD", "HEADCS", and "RELEASE"; closes #34 --- .travis.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ea3653..bbfe918 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,6 @@ env: # Supply more than one RACKET_VERSION (as in the example below) to # create a Travis-CI build matrix to test against multiple Racket # versions. - # - # The RELEASE snapshot is only available during the release process. - RACKET_VERSION=6.1 - RACKET_VERSION=6.1.1 - RACKET_VERSION=6.2 @@ -33,13 +31,23 @@ env: - RACKET_VERSION=7.1 - RACKET_VERSION=7.2 - RACKET_VERSION=7.3 + # "HEAD" is a daily snapshot built from the `master` branch. + # This is the main variant of Racket that uses its own runtime. - RACKET_VERSION=HEAD + # "HEADCS" is a daily snapshot built from the `master` branch. + # This is an experimental variant of Racket that uses Chez Scheme. - RACKET_VERSION=HEADCS + # "RELEASE" is a release candidate that updates only during the + # weeks before a new release. The final release candidate should + # remain available until the next release cycle. As a result, you + # may leave this in your .travis.yml all the time. See: + # . - RACKET_VERSION=RELEASE -# You may want to test against certain versions of Racket, without -# having them count against the overall success/failure. matrix: + # You may want to test against certain versions of Racket, without + # having them count against the overall success/failure. For example + # here we include the development versions: allow_failures: - env: RACKET_VERSION=HEAD - env: RACKET_VERSION=HEADCS