Make check for R 3.3.x bug easier to maintain
CentOS 7 is the last distro affected by this bug, so invert the logic to make maintenance easier.
This commit is contained in:
parent
768316ab6f
commit
218b2dfed6
1 changed files with 3 additions and 11 deletions
14
handler.py
14
handler.py
|
|
@ -128,17 +128,9 @@ def queue_builds(event, context):
|
||||||
for platform in event['supported_platforms']:
|
for platform in event['supported_platforms']:
|
||||||
# In R 3.3.0, 3.3.1, and 3.3.2, the configure script check for the
|
# 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.
|
# zlib version fails to handle versions longer than 5 characters.
|
||||||
# Skip builds affected by this bug.
|
# Skip builds affected by this bug. Most newer distros will be affected.
|
||||||
if platform in [
|
# https://github.com/rstudio/r-builds/issues/76
|
||||||
'ubuntu-2204',
|
if version in ['3.3.0', '3.3.1', '3.3.2'] and platform not in ['centos-7']:
|
||||||
'ubuntu-2004',
|
|
||||||
'ubuntu-1804',
|
|
||||||
'opensuse-153',
|
|
||||||
'centos-8',
|
|
||||||
'rhel-9',
|
|
||||||
'debian-10',
|
|
||||||
'debian-11',
|
|
||||||
] and version in ['3.3.0', '3.3.1', '3.3.2']:
|
|
||||||
continue
|
continue
|
||||||
job_ids.append(_submit_job(version, platform))
|
job_ids.append(_submit_job(version, platform))
|
||||||
event['jobIds'] = job_ids
|
event['jobIds'] = job_ids
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue