Skip to content

Commit

Permalink
.travis.sh : arm64v8/ubuntu:focal takes > 90min. skip test/transparen…
Browse files Browse the repository at this point in the history
…t.l, compile test.
  • Loading branch information
k-okada committed Dec 15, 2024
1 parent 4e3cdf3 commit 500d7e0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ for test_l in irteus/test/*.l; do

# osrf/ubuntu_arm64:trusty takes >50 min, skip irteus-demo.l
[[ "$DOCKER_IMAGE" == *"arm64:trusty"* && $test_l =~ irteus-demo.l ]] && continue;
# arm64v8/ubuntu:focal takes >50 min, skip transport.l
[[ "$DOCKER_IMAGE" == "arm64v8/ubuntu:focal" && $test_l =~ transparent.l ]] && continue;

# skip collision test because bullet of 2.83 or later version is not released in trusty and jessie.
# https://github.com/euslisp/jskeus/blob/6cb08aa6c66fa8759591de25b7da68baf76d5f09/irteus/Makefile#L37
[[ ( "$DOCKER_IMAGE" == *"trusty"* || "$DOCKER_IMAGE" == *"jessie"* ) && $test_l =~ test-collision.l ]] && continue;
Expand All @@ -102,6 +105,8 @@ for test_l in irteus/test/*.l; do

travis_time_end `expr 32 - $TMP_EXIT_STATUS`

[[ "$DOCKER_IMAGE" == "arm64v8/ubuntu:focal" ]] && continue;

travis_time_start jskeus.compiled.${test_l##*/}.test

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))))"
Expand Down

0 comments on commit 500d7e0

Please sign in to comment.