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 7823eba commit f385eceCopy full SHA for f385ece
test-build.sh
@@ -49,12 +49,14 @@ for version in "${versions[@]}"; do
49
tag=$(get_tag "$version")
50
full_version=$(get_full_version "$version")
51
52
- build "$version" "" "$tag"
53
-
54
# Get supported variants according to the target architecture.
55
# See details in function.sh
56
IFS=' ' read -ra variants <<< "$(IFS=','; get_variants "$(dirname "$version")" "$2")"
57
+ if [[ "${variants[*]}" =~ "default" ]]; then
+ build "$version" "" "$tag"
58
+ fi
59
+
60
for variant in "${variants[@]}"; do
61
# Skip non-docker directories
62
[ -f "$version/$variant/Dockerfile" ] || continue
0 commit comments