From 363b86819e3f6f95fdc7509493e284ca5ed5fbad Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Sun, 15 Dec 2024 20:21:51 +0900 Subject: [PATCH] .travis.sh : arm64v8/ubuntu:focal to skip jskeus.compile, becaues it takes too long --- .travis.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.sh b/.travis.sh index 9290850a..a5ac5a56 100755 --- a/.travis.sh +++ b/.travis.sh @@ -102,6 +102,8 @@ for test_l in irteus/test/*.l; do travis_time_end `expr 32 - $TMP_EXIT_STATUS` + if [[ "$DOCKER_IMAGE" == "arm64v8/ubuntu:focal" ]]; then continue; fi + 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))))"