effil/ci/test_all.sh
mihacooper 5057116136 Channels implementation and tests (#42)
Channel implementation
2017-04-16 22:58:21 +03:00

9 lines
249 B
Bash
Executable File

#!/usr/bin/env bash
set -e
for build_type in debug release; do
mkdir -p $build_type
(cd $build_type && cmake -DCMAKE_BUILD_TYPE=$build_type $@ .. && make -j4 install)
(cd $build_type && ./tests && lua run_tests.lua --extra-checks)
done