Skip to content
Snippets Groups Projects
Commit f9895d78 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[build] Temporary changes to address #70

parent 0e5024c7
Branches
Tags
1 merge request!206Temporary fix to issue #70
Pipeline #47494 passed
...@@ -299,8 +299,12 @@ def parse_dependencies(recipe_dir, config): ...@@ -299,8 +299,12 @@ def parse_dependencies(recipe_dir, config):
metadata = get_rendered_metadata(recipe_dir, config) metadata = get_rendered_metadata(recipe_dir, config)
recipe = get_parsed_recipe(metadata) recipe = get_parsed_recipe(metadata)
build_requirements = remove_pins(recipe["requirements"].get("build", []))
# causes conflicts on macOS
if "llvm-tools" in build_requirements:
build_requirements.remove("llvm-tools")
return ( return (
remove_pins(recipe["requirements"].get("build", [])) build_requirements
+ remove_pins(recipe["requirements"].get("host", [])) + remove_pins(recipe["requirements"].get("host", []))
+ recipe["requirements"].get("run", []) + recipe["requirements"].get("run", [])
+ recipe.get("test", {}).get("requires", []) + recipe.get("test", {}).get("requires", [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment