Skip to content

Commit

Permalink
skip conda build of mro 3.5.1 due to segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
bkemper24 authored Jan 6, 2022
1 parent 6b14d0b commit 904971c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cicd/tar2conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ def get_supported_versions(platform, r_base):
ver = item['version']
if tuple([int(x) for x in ver.split('.')]) < (3, 4, 3):
continue
# skip mro 3.5.1 due to build issues
if platform == "linux-64" and r_base == "mro" and tuple([int(x) for x in ver.split('.')]) == (3, 5, 1):
continue

r_base_vers.add(item['version'])

for pkg in ['r::r-httr', 'r::r-jsonlite', 'r::r-testthat']:
Expand Down

0 comments on commit 904971c

Please sign in to comment.