From e5627b83a3076f9435c3a40d16ce4bec0162151f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Bartolom=C3=A4us?= Date: Fri, 3 Jan 2020 19:17:51 +0100 Subject: [PATCH] Skip 'make test' on JVM backend It doesn't finish in a reasonable time and there are various failures for those tests that were run. It's just a big waste of resources. *If* running 'make test' on the JVM backend gets in a better shape in the future, it could be re-enabled easily. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2f0ac822c0a..e976043f1cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ addons: script: - perl Configure.pl $RAKUDO_OPTIONS --moar-option=--cc=$(command -v gcc-6 >/dev/null 2>&1; if [ $? -eq 1 ]; then printf "gcc"; else printf "gcc-6"; fi) - "make install" - - (cd ~/build/rakudo/rakudo/ && prove -e ~/build/rakudo/rakudo/install/bin/perl6 -vlr t) + - if [[ $RAKUDO_OPTIONS =~ jvm ]]; then echo "make test is skipped on the jvm backend"; else (cd ~/build/rakudo/rakudo/ && prove -e ~/build/rakudo/rakudo/install/bin/perl6 -vlr t); fi branches: only: