
Namely, added test.sh to run through all the possible downloads and test for validity. Added handler for TEST=1 in install-racket.sh. Normalize urls as much as possible and to get minimal installs working properly. This can probably be merged to master and drop the minimal branch entirely. I think there is still some cleanup that can happen. The various linux flavors can probably be unified, if not parameterized. This patch removes SCOPE_SNAPSHOT, as it seems to point to incredibly stale content. RELEASE does too, but there is a note that it is only valid during release phases.
8 lines
254 B
Bash
Executable File
8 lines
254 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
for VER in 6.6 6.5 6.4 6.3 6.2 6.2.1 6.1 6.1.1 6.0 6.0.1 5.93 5.92 5.3 5.3.6 5.3.5 5.3.4 5.3.3 5.3.2 5.3.1 HEAD RELEASE ; do
|
|
for MIN in 0 1; do
|
|
TEST=1 RACKET_MINIMAL=$MIN RACKET_VERSION=$VER ./install-racket.sh
|
|
done
|
|
done
|