Skip to content

Commit

Permalink
Update handler.py not to skip R 3.3.x
Browse files Browse the repository at this point in the history
We have a patch now, so we can build these
R versions.
  • Loading branch information
gaborcsardi committed Jul 19, 2023
1 parent 7b9cc43 commit ee6c49c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ee6c49c

Please sign in to comment.