Add "HEADCS" for Racket-on-Chez snapshots

This commit is contained in:
Philip McGrath 2018-11-19 08:16:24 -05:00 committed by Greg Hendershott
parent 92344e09ae
commit 4779de7966
2 changed files with 8 additions and 0 deletions

View File

@ -37,6 +37,7 @@ env:
- RACKET_VERSION=6.12
- RACKET_VERSION=7.0
- RACKET_VERSION=HEAD
- RACKET_VERSION=HEADCS
- RACKET_VERSION=RELEASE
# You may want to test against certain versions of Racket, without

View File

@ -18,6 +18,13 @@ if [[ "$RACKET_VERSION" = "HEAD" ]]; then
else
URL="${NWU_BASE}/racket-test-current-x86_64-linux-precise.sh"
fi
elif [[ "$RACKET_VERSION" = "HEADCS" ]]; then
UTAH_BASE="https://www.cs.utah.edu/plt/snapshots/current/installers"
if [[ "$RACKET_MINIMAL" = "1" ]]; then
URL="${UTAH_BASE}/min-racket-current-x86_64-linux-cs-xenial.sh"
else
URL="${UTAH_BASE}/racket-current-x86_64-linux-cs-xenial.sh"
fi
elif [[ "$RACKET_VERSION" = 5.3* ]]; then
if [[ "$RACKET_MINIMAL" = "1" ]]; then
URL="${DL_BASE}/${RACKET_VERSION}/racket-textual/racket-textual-${RACKET_VERSION}-bin-x86_64-linux-debian-squeeze.sh"