Skip to content

Commit

Permalink
Allow non-headless bullet conda-builds (#1359)
Browse files Browse the repository at this point in the history
* Allow non-headless bullet conda-builds

* Testing

* set CI back to headless

Co-authored-by: Alexander Clegg <[email protected]>
  • Loading branch information
Skylion007 and aclegg3 authored Jun 30, 2021
1 parent 82e1d56 commit bfafd79
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions conda-build/linux_matrix_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,8 @@ def main():
headless_modes = [True]
py_vers = ["3.6"]

# TODO: Remove filter bullet_modes = True, headless_modes = False as failing
filter_bullet_with_display = lambda product: itertools.filterfalse(
lambda op: op[1:3] == (True, False), product
)

for py_ver, use_bullet, headless, cuda_ver in filter_bullet_with_display(
itertools.product(py_vers, bullet_modes, headless_modes, cuda_vers)
for py_ver, use_bullet, headless, cuda_ver in itertools.product(
py_vers, bullet_modes, headless_modes, cuda_vers
):
env = os.environ.copy()

Expand Down

0 comments on commit bfafd79

Please sign in to comment.