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 4b487f2 commit 2cccd1eCopy full SHA for 2cccd1e
dev/registry.sh
@@ -236,6 +236,9 @@ elif [ "$cmd" = "update" ]; then
236
if [[ " ${images_to_build[@]} " =~ " request-monitor " ]]; then
237
cache_builder request-monitor
238
fi
239
+ if [[ " ${images_to_build[@]} " =~ " async-gateway " ]]; then
240
+ cache_builder async-gateway
241
+ fi
242
243
if command -v parallel &> /dev/null && [ -n "${NUM_BUILD_PROCS+set}" ] && [ "$NUM_BUILD_PROCS" != "1" ]; then
244
is_registry_logged_in=$is_registry_logged_in ROOT=$ROOT registry_push_url=$registry_push_url SHELL=$(type -p /bin/bash) parallel --will-cite --halt now,fail=1 --eta --jobs $NUM_BUILD_PROCS build_and_push "{}" ::: "${images_to_build[@]}"
0 commit comments