File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,15 @@ test-image () {
8
8
declare -r image=" ${1} " ;
9
9
docker container run " ${image} " racket -e " (+ 1 2 3)" ;
10
10
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
15
20
};
16
21
17
22
for image in $( find_testable_images " ${DOCKER_REPOSITORY} " ) ; do
You can’t perform that action at this time.
0 commit comments