We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 401d51e commit 75ee4ecCopy full SHA for 75ee4ec
tests/test_all.sh
@@ -1,9 +1,9 @@
1
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
2
cd "${SCRIPT_DIR}"
3
4
-for d in "dockerfiles/"* ; do
5
- echo "Running ${d}" &&
6
- pushd "${d}" &&
+find . -type d -mindepth 2 -path "*/dockerfiles/*" | sort --reverse | while read directory; do
+ echo "Running ${directory}" &&
+ pushd "${directory}" &&
7
bash "1_build.sh" &&
8
bash "2_start.sh" &&
9
bash "3_test.sh" &&
0 commit comments