Merge pull request #455 from epylar/python.2
[jackhill/mal.git] / .travis_test.sh
CommitLineData
7755014c
JM
1#!/bin/bash
2
3set -ex
4
531a98a9
JM
5ACTION=${1}
6IMPL=${2}
531a98a9 7
108d07a2 8# Environment variable configuration
a003046c 9BUILD_IMPL=${BUILD_IMPL:-${IMPL}}
108d07a2 10TEST_OPTS="${TEST_OPTS} --debug-file ../${ACTION}.err"
a003046c 11
108d07a2 12if [ "${DO_SELF_HOST}" ]; then
7864f19b
JM
13 MAL_IMPL=${IMPL}
14 IMPL=mal
108d07a2
JM
15fi
16if [ "${DO_HARD}" ]; then
17 TEST_OPTS="${TEST_OPTS} --hard"
18fi
2d76e877 19
531a98a9
JM
20echo "ACTION: ${ACTION}"
21echo "IMPL: ${IMPL}"
a003046c 22echo "BUILD_IMPL: ${BUILD_IMPL}"
531a98a9
JM
23echo "MAL_IMPL: ${MAL_IMPL}"
24
a85482fe
JM
25if [ "${NO_PERF}" -a "${ACTION}" = "perf" ]; then
26 echo "Skipping perf test"
27 exit 0
28fi
29if [ "${NO_SELF_HOST}" -a "${DO_SELF_HOST}" ]; then
30 echo "Skipping ${ACTION} of ${MAL_IMPL} self-host"
31 exit 0
32fi
33if [ "${NO_SELF_HOST_PERF}" -a "${DO_SELF_HOST}" -a "${ACTION}" = "perf" ]; then
34 echo "Skipping only perf test for ${MAL_IMPL} self-host"
35 exit 0
7864f19b
JM
36fi
37
108d07a2
JM
38mode_var=${MAL_IMPL:-${IMPL}}_MODE
39mode_val=${!mode_var}
40
a003046c
JM
41MAKE="make ${mode_val:+${mode_var}=${mode_val}}"
42
6ce7b0ed
JM
43# If NO_DOCKER is blank then launch use a docker image, otherwise use
44# the Travis image/tools directly.
a003046c 45if [ -z "${NO_DOCKER}" ]; then
7864f19b
JM
46 img_impl=$(echo "${MAL_IMPL:-${IMPL}}" | tr '[:upper:]' '[:lower:]')
47 # We could just use make DOCKERIZE=1 instead but that does add
48 # non-trivial startup overhead for each step.
ff4e5f16 49 MAKE="docker run -it -u $(id -u) -v `pwd`:/mal kanaka/mal-test-${img_impl%%-mal} ${MAKE}"
c727d1c8 50fi
6ce7b0ed 51
a003046c
JM
52case "${ACTION}" in
53build)
54 # rpython often fails on step9 in compute_vars_longevity
1e9eb423 55 # so build step9, then continue with the full build
a003046c
JM
56 if [ "${BUILD_IMPL}" = "rpython" ]; then
57 ${MAKE} -C "${BUILD_IMPL}" step9_try || true
58 fi
59 ${MAKE} -C ${BUILD_IMPL}
60 ;;
61test|perf)
108d07a2
JM
62 [ "${ACTION}" = "perf" ] && STEP=
63 if ! ${MAKE} TEST_OPTS="${TEST_OPTS}" \
a003046c 64 ${MAL_IMPL:+MAL_IMPL=${MAL_IMPL}} \
108d07a2 65 ${REGRESS:+REGRESS=${REGRESS}} \
77fd710c
JM
66 ${HARD:+HARD=${HARD}} \
67 ${DEFERRABLE:+DEFERRABLE=${DEFERRABLE}} \
68 ${OPTIONAL:+OPTIONAL=${OPTIONAL}} \
108d07a2 69 ${ACTION}^${IMPL}${STEP:+^${STEP}}; then
a003046c
JM
70 # print debug-file on error
71 cat ${ACTION}.err
72 false
73 fi
74 ;;
75esac