Skip to content

Commit 500d7e0

Browse files
committed
.travis.sh : arm64v8/ubuntu:focal takes > 90min. skip test/transparent.l, compile test.
1 parent 4e3cdf3 commit 500d7e0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.travis.sh

+5
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ for test_l in irteus/test/*.l; do
8585

8686
# osrf/ubuntu_arm64:trusty takes >50 min, skip irteus-demo.l
8787
[[ "$DOCKER_IMAGE" == *"arm64:trusty"* && $test_l =~ irteus-demo.l ]] && continue;
88+
# arm64v8/ubuntu:focal takes >50 min, skip transport.l
89+
[[ "$DOCKER_IMAGE" == "arm64v8/ubuntu:focal" && $test_l =~ transparent.l ]] && continue;
90+
8891
# skip collision test because bullet of 2.83 or later version is not released in trusty and jessie.
8992
# https://github.com/euslisp/jskeus/blob/6cb08aa6c66fa8759591de25b7da68baf76d5f09/irteus/Makefile#L37
9093
[[ ( "$DOCKER_IMAGE" == *"trusty"* || "$DOCKER_IMAGE" == *"jessie"* ) && $test_l =~ test-collision.l ]] && continue;
@@ -102,6 +105,8 @@ for test_l in irteus/test/*.l; do
102105

103106
travis_time_end `expr 32 - $TMP_EXIT_STATUS`
104107

108+
[[ "$DOCKER_IMAGE" == "arm64v8/ubuntu:focal" ]] && continue;
109+
105110
travis_time_start jskeus.compiled.${test_l##*/}.test
106111

107112
irteusgl "(let ((o (namestring (merge-pathnames \".o\" \"$test_l\"))) (so (namestring (merge-pathnames \".so\" \"$test_l\")))) (compile-file \"$test_l\" :o o) (if (probe-file so) (load so) (exit 1))))"

0 commit comments

Comments
 (0)