From ee6c49ca9e3342a13fdff3e42d8430c08bb3c772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Wed, 19 Jul 2023 23:18:16 +0200 Subject: [PATCH] Update handler.py not to skip R 3.3.x We have a patch now, so we can build these R versions. --- handler.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/handler.py b/handler.py index 91baf50..f2f9fc9 100644 --- a/handler.py +++ b/handler.py @@ -146,12 +146,6 @@ def queue_builds(event, context): job_ids = [] for version in event['versions_to_build']: for platform in event['supported_platforms']: - # 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. Most newer distros will be affected. - # https://github.com/rstudio/r-builds/issues/76 - if version in ['3.3.0', '3.3.1', '3.3.2'] and platform not in ['centos-7']: - continue job_ids.append(_submit_job(version, platform)) event['jobIds'] = job_ids return event