Files
php-curl-class/tests/test_all.sh
T
2018-07-29 00:14:56 -07:00

13 lines
280 B
Bash
Executable File

SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${SCRIPT_DIR}"
for d in "dockerfiles/"* ; do
echo "Running ${d}" &&
pushd "${d}" &&
bash "1_build.sh" &&
bash "2_start.sh" &&
bash "3_test.sh" &&
bash "4_stop.sh" &&
popd
done