From b7ef536ec39899de8cd36d13cf9eca1255ab9dc5 Mon Sep 17 00:00:00 2001 From: ohemorange Date: Wed, 7 Feb 2024 16:29:08 -0800 Subject: [PATCH] Use the legacy snapcraft build until #9890 is fixed (#9891) --- tools/snap/build_remote.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/snap/build_remote.py b/tools/snap/build_remote.py index 092acfa3e..717eabd07 100755 --- a/tools/snap/build_remote.py +++ b/tools/snap/build_remote.py @@ -240,6 +240,10 @@ def main(): subprocess.run(['tools/snap/generate_dnsplugins_all.sh'], check=True, cwd=CERTBOT_DIR) + # Use the legacy remote launchpad build until + # https://github.com/certbot/certbot/issues/9890 is fixed + os.environ['SNAPCRAFT_REMOTE_BUILD_STRATEGY'] = 'force-fallback' + print('Start remote snap builds...') print(f' - archs: {", ".join(archs)}') print(f' - projects: {", ".join(sorted(targets))}')