1
1
mirror of https://github.com/trafi/maybe-result-cpp synced 2025-02-17 00:51:09 +01:00
maybe-result-cpp/dev/docker-run-tests.sh
2016-07-10 01:37:56 +03:00

20 lines
387 B
Bash
Executable File

#!/usr/bin/env bash
COMMAND="./dev/run-tests.sh"
compilers=( "clang-3.7" "clang-3.8" "gcc-4.9" "gcc-5.2" "gcc-6.1" )
for compiler in "${compilers[@]}"
do
echo "Env ${compiler}"
docker run -v `pwd`:/opt -w=/opt nercury/cmake-cpp:${compiler} /bin/bash -c "${COMMAND}"
if [ $? -ne 0 ]; then
echo "Tests failed on ${compiler}"
exit 1
fi
done
echo "OK!"