removed unnecessary testing script and fixed function name

This commit is contained in:
humanoid2050 2023-04-03 21:01:44 -04:00
parent 4d7ed3f692
commit 9de082a5f6
2 changed files with 2 additions and 6 deletions

View file

@ -27,7 +27,7 @@ CreateBuilder
InstallMultiarchSupport
BuildAndCacheByArch() {
BuildAndLoadByArch() {
TAG_ARCH=$1
docker buildx build --target certbot --builder certbot_builder \
--platform $(arch2platform $TAG_ARCH) \
@ -52,7 +52,7 @@ BuildAndCacheByArch() {
# https://github.com/certbot/certbot/issues/9587.
for ARCH in "${REQUESTED_ARCH_ARRAY[@]}"; do
BuildAndCacheByArch $ARCH
BuildAndLoadByArch $ARCH
done

View file

@ -1,4 +0,0 @@
set -euxo pipefail
while true; do
remove_untagged_docker.sh || ./build.sh v2.3.1 all && ./test.sh v2.3.1 all
done