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 be8cccc commit 877e5b1Copy full SHA for 877e5b1
tests/test_all.sh
@@ -8,21 +8,25 @@ find . -type d -mindepth 2 -path "*/dockerfiles/*" | sort --reverse | while read
8
9
bash "1_build.sh"
10
if [[ $? -ne 0 ]]; then
11
+ echo "Error: Build failed for ${directory}"
12
exit 1
13
fi
14
15
bash "2_start.sh"
16
17
+ echo "Error: Start failed for ${directory}"
18
19
20
21
bash "3_test.sh"
22
23
+ echo "Error: Test failed for ${directory}"
24
25
26
27
bash "4_stop.sh"
28
29
+ echo "Error: Stop failed for ${directory}"
30
31
32
0 commit comments