Skip to content

Commit 927a087

Browse files
committed
build: skip package tests for Racket 8.[0123456] BC
1 parent d45f5b3 commit 927a087

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

test.sh

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@ test-image () {
88
declare -r image="${1}";
99
docker container run "${image}" racket -e "(+ 1 2 3)";
1010

11-
# The "nevermore" package is an empty package that never changes which we
12-
# created specifically for this test. This lets us test that package
13-
# installation works and the default package catalogs are properly configured.
14-
docker container run "${image}" raco pkg install --auto nevermore;
11+
# Skip this test on Racket 8.{0-6} BC since those versions have issues
12+
# loading OpenSSL on recent Debian versions.
13+
if ! [[ "${image}" =~ racket:8.[0123456] ]]; then
14+
# The "nevermore" package is an empty package that never changes
15+
# which we created specifically for this test. This lets us test
16+
# that package installation works and the default package catalogs
17+
# are properly configured.
18+
docker container run "${image}" raco pkg install --auto nevermore;
19+
fi
1520
};
1621

1722
for image in $(find_testable_images "${DOCKER_REPOSITORY}"); do

0 commit comments

Comments
 (0)