From 48c1c0faf4e226d9859011720f373e7c5415f542 Mon Sep 17 00:00:00 2001 From: Jonathan Curran Date: Mon, 27 Apr 2020 17:18:50 -0600 Subject: [PATCH] Ignore ubuntu 20 for zlib build bug --- handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler.py b/handler.py index f146940..82c8ce0 100644 --- a/handler.py +++ b/handler.py @@ -125,7 +125,7 @@ def queue_builds(event, context): # In R 3.3.0, 3.3.1, and 3.3.2, the configure script check for the # zlib version fails to handle versions longer than 5 characters. # Skip builds affected by this bug. - if platform in ['ubuntu-1804', 'opensuse-15', 'centos-8'] and version in ['3.3.0', '3.3.1', '3.3.2']: + if platform in ['ubuntu-2004', 'ubuntu-1804', 'opensuse-15', 'centos-8'] and version in ['3.3.0', '3.3.1', '3.3.2']: continue job_ids.append(_submit_job(version, platform)) event['jobIds'] = job_ids