1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/.travis_test.sh
2015-10-09 22:45:48 -05:00

16 lines
567 B
Bash
Executable File

#!/bin/bash
set -ex
# If NO_DOCKER is blank then launch use a docker image, otherwise
# use the Travis image/tools directly.
if [ -z "${NO_DOCKER}" ]; then
impl=$(echo "${IMPL}" | tr '[:upper:]' '[:lower:]')
docker run -it -u $(id -u) -v `pwd`:/mal kanaka/mal-test-${impl} make TEST_OPTS="--soft --log-file ../test.out" test^${IMPL}
#docker run -it -u $(id -u) -v `pwd`:/mal kanaka/mal-test-${IMPL,,} make perf^${IMPL}
else
make TEST_OPTS="--soft --log-file ../test.out" test^${IMPL}
#make TEST_OPTS="--soft --log-file ../perf" perf^${IMPL}
fi