From 75fed11f03f36776f918a09898d08770607381cf Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Sun, 11 Oct 2015 23:27:02 -0500 Subject: [PATCH] Travis: build rpython step9 first. --- .travis_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis_build.sh b/.travis_build.sh index 6063b02e..308965ec 100755 --- a/.travis_build.sh +++ b/.travis_build.sh @@ -15,10 +15,10 @@ if [ -z "${NO_DOCKER}" ]; then docker pull kanaka/mal-test-${img_impl} fi if [ "${BUILD_IMPL}" = "rpython" ]; then - # rpython often fails once per build in compute_vars_longevity - # so build it twice and ignore failures the first time + # rpython often fails on step9 in compute_vars_longevity + # so build step9, then continue wit the full build docker run -it -u $(id -u) -v `pwd`:/mal kanaka/mal-test-${img_impl} \ - make -C ${BUILD_IMPL} || true + make -C ${BUILD_IMPL} step9_try || true fi docker run -it -u $(id -u) -v `pwd`:/mal kanaka/mal-test-${img_impl} \ make -C ${BUILD_IMPL}